Ejemplo n.º 1
0
        public void ResetGame()
        {
            clickCounter = 0;
            Animate.BlinkSquares(tableLayoutPanel1);

            // Generate a random int between 1-20 tand assign to mine variable
            mineLocation = randomMine.Next(MIN, MAX);
        }
Ejemplo n.º 2
0
        private void NewGame()
        {
            clearStats();

            Animate.BlinkSquares(tableLayoutPanel1);

            // Generate a random int between 1-20 tand assign to mine variable
            mineLocation = randomMine.Next(MIN, MAX);
        }