Exemple #1
0
        private void GenerateListOfDays()
        {
            int dayCounterForWeather = 0;

            days = new List <Day>();
            string city = UserInterface.ChooseWhereToOpenStand("Type in a city to open your stand\n\n__");

            for (int i = 0; i < howManyDays; i++)
            {
                days.Add(new Day(random, city, dayCounterForWeather));
                dayCounterForWeather++;
            }
            currentDay = 0;
        }