Exemplo n.º 1
0
 public static void Start()
 {
     while (true)
     {
         OutPut.GamePlay();
         bool endGame = Controller.ControlPlayer();
         if (endGame)
         {
             Environment.Exit(0);
         }
         Console.Clear();
         StatusGame.LostGame();
         StatusGame.WinGame();
     }
 }