private void StartNewGame() { AddColors(); if (currentGame != null) { currentGame.UpdateOutput -= currentGame_Update; } currentGame = new Game(); currentGame.UpdateOutput += currentGame_Update; currentGame.NewGame(); }