public void StartDayPrompt() { Console.Clear(); Console.WriteLine(" Here are the starting details for day: " + currentDay); day = new Day(rnd); PurchaseMaterials(); SetRecipe(); Console.WriteLine(""); Console.WriteLine("Hit enter when you are ready to start selling!"); Console.ReadLine(); day.weather.DisplayActualWeather(); day.StartSelling(player); player.DisplayDailyAmount(); player.DisplayWeeklyAmount(); }