示例#1
0
        static void Main(string[] args)
        {
            bool nextGame;

            do
            {
                DiceGame game = new DiceGame("Pierwszy", "Drugi");
                nextGame = game.Start();
            } while (nextGame);
        }