Exemple #1
0
        static void Main(string[] args)
        {
            ThrowYut    th   = new ThrowYut();
            Move        move = new Move();
            TurnChecker tc   = new TurnChecker();

            int str;

            str =
                move.RealMove(th.ThrowYutResult());

            Console.WriteLine(str);

            for (int i = 0; i < 100; i++)
            {
                Console.WriteLine("------------------" + i + "게임" + "---------------");

                tc.Player1Turn();
            }

            Console.WriteLine("게임종료");
        }