Esempio n. 1
0
        private void StartNewGame()
        {
            gameBoard.NewGame();

            // Redraw the grid
            Invalidate();
        }
Esempio n. 2
0
        private void newGameButton_Click(object sender, EventArgs e)
        {
            gameBoard.NewGame();

            Invalidate();
        }