Exemplo n.º 1
0
  private void startExistingGame() {
    this.console.println("\n\nEnter the file path for the file where the game is saved.");
    String filePath = this.getInput();

    try {
      // start a saved game
      GameControl.getSavedGame(filePath);
    } catch (Exception ex) {
      ErrorView.display("MainMenuView", ex.getMessage());
    }

    GameMenuView gameMenu = new GameMenuView();
    gameMenu.display();
  }