Ejemplo n.º 1
0
 public void BuildObjects()
 {
     UserInterface.BeginningOfGame();
     weather.BuildForcast();
     weather.DisplayForcast();
     while (dayCounter < UserInterface.gameLength)
     {
         RunOneDay();
         dayCounter++;
     }
     UserInterface.EndOfGameResults(playerOne);
     Console.ReadLine();
 }