Examples of GameWon


Examples of oop13.space.views.GameWon

    this.mainFrame.replacePanel(gameOverGUI);
  }

  @Override
  public void gameWon() {
    GameWon gameWonGUI = new GameWon();
    GameWonController gameWonController = new GameWonController(this.mainFrame, this.model);
    gameWonController.setView(gameWonGUI);
    this.mainFrame.replacePanel(gameWonGUI);
  }
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.