コード例 #1
0
ファイル: Day.cs プロジェクト: Charles-Erickson/Lemonade
 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();
 }