public void startNewGame() {
   this.strategy = strategy.newInstance();
   gameState = new GameState();
   board = strategy.getBoard();
   view.restartGame();
 }