Beispiel #1
0
 public void RunDayFunction()
 {
     weather.DayGameWeather();
     Console.WriteLine("Welcome to a new day. The weather is " + weather.GameWeather + "." + "The Temperature " + weather.Tempeture + ".");
     store.CalculateNewCashTotal();
     recipe.MakeLemondae();
     player.SetPrice();
     inventory.UseStock();
     DailyCustomer(CustomersPerDay());
     Console.WriteLine(player.StartingMoney);
     Console.ReadLine();
 }