Examples of HighScoreGUI


Examples of oop13.space.views.HighScoreGUI

    this.mainFrame.replacePanel(gamePanel);
  }

  @Override
  public void seeHighScoresCmd() {
    HighScoreGUI highScore = new HighScoreGUI();
    HighScoreController highScoreController = new HighScoreController(this.mainFrame, this.model);
    highScoreController.setView(highScore);
    this.mainFrame.replacePanel(highScore);
  }
View Full Code Here

Examples of oop13.space.views.HighScoreGUI

  }

  @Override
  public void resetCmd() {
    HighScore.getHighScore().resetHighScore();
    HighScoreGUI highScoreGUI = new HighScoreGUI();
    HighScoreController highScoreController = new HighScoreController(this.mainFrame, this.model);
    highScoreController.setView(highScoreGUI);
    this.mainFrame.replacePanel(highScoreGUI);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.