Beispiel #1
0
 public void StartGame()
 {
     UI.DisplayPlayerInstructions(player);
     for (int i = 1; i < 8; i++)
     {
         UI.DiplayWeatherConditions(day, rnd);
         day.GeneratingCustomersBasedOnWeather(rnd);
         UI.DisplayChicesToBuy(store, player);
         UI.DiplayUserIngredients(store, player);
         UI.AskForPlayerRecipe(recipe);
     }
 }