コード例 #1
0
ファイル: db.cs プロジェクト: 12-South-Studios/smaug-cs
        public static int number_door()
        {
            int door;

            while ((door = SmaugRandom.RandomMM() % (16 - 1)) > 9)
            {
                // do nothing
            }

            return(door);
        }