Implementing weather changes that affect animals

From TRCCompSci - AQA Computer Science
Revision as of 13:16, 14 March 2017 by Westy-Chan (talk | contribs)
Jump to: navigation, search
 
                if (menuOption == 1)
                {
                    TimePeriod++;
                    Season = TimePeriod % 4;
                    ShowDetail = true;
                    AdvanceTimePeriod();
                }
                if (menuOption == 2)
                {
                    TimePeriod++;
                    Season = TimePeriod % 4;
                    ShowDetail = false;
                    AdvanceTimePeriod();
                }