Beispiel #1
0
        static void Main(string[] args)
        {
            for (;;)
            {
                Game game = Game.CreateGameInteractive();

                // BeginLoop returns true if the players would like
                // to play a new game; otherwise, break out
                if (!game.BeginLoop())
                {
                    break;
                }
            }
        }