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