Exemplo n.º 1
0
 public void RunDay(Player player, Store store, Day day)
 {
     store.GoToStore(player);
     player.wallet.DisplayBalance();
     weather.DisplayForecast();
     player.recipe.AddToRecipe(player.inventory);
     player.recipe.DeterminePricePerCup();
     wholePrice = player.recipe.pricePerCup;
     player.pitcher.FillPitcher(player);
     weather.DisplayActualWeather();
     DetermineCustomers(player, weather, store, day);
     player.pitcher.DisplayLeftoverInventory(player.inventory);
     PostResults(player);
 }
Exemplo n.º 2
0
 public void GetForecast(Random rnd)
 {
     weather.GetTemp(rnd);
     weather.GetOvercast(rnd);
     weather.DisplayForecast();
 }