Exemplo n.º 1
0
        private void BeginNewGame()
        {
            GameView.NewGameQuestion();
            var answer = Console.ReadLine();

            if (answer.ToUpper() == "Y")
            {
                Console.Clear();
                game = Game.CreateInstance();
                Run();
            }
        }
Exemplo n.º 2
0
 public GameController()
 {
     game = Game.CreateInstance();
 }