Example #1
0
        /// <summary>
        /// Set the game up for a new game.
        /// </summary>
        public void NewGame()
        {
            // Set the Catagoeries up.
            myCatagory = new Catagory[6];
            for (int index = 0; index < 6; index++)
            {
                myCatagory[index] = new Catagory();
            }

            // Set the game board for a new game.
            timeRemaining = 1300;
            timer1.Start();
            TestReadXML();
            SetCategorys();
            SetPanes();
            CreateGame();
        }