private void displaySaveGameMenu() { this.console.println("\n\nEnter the file path for the file where the game is to be saved."); String filePath = this.getInput(); try { // save the game to the specified file GameControl.saveGame(TheGreatEscape.getCurrentGame(), filePath); } catch (Exception ex) { ErrorView.display("MainMenuView", ex.getMessage()); } }
private void startNewGame() { // create new game GameControl.createNewGame(TheGreatEscape.getPlayer()); }