Package game.gui.elements

Examples of game.gui.elements.ChooseList


  public GuiDead(Game game) {
    super(game, Game.WIDTH, Game.HEIGHT);
    setTint(0.5D, 0.2D, 0.2D);
    this.pauseGame = true;
    list = new ChooseList(0, this);
    list.addOption(list.new Option(0, "Retry"));
    list.addOption(list.new Option(1, "Main Menu"));
    list.addOption(list.new Option(2, "Exit"));
  }
View Full Code Here


  private String splash = "Grave Robber Test v1.0";
 
  public GuiPause(Game game, int width, int height) {
    super(game, width, height);
    this.pauseGame = true;
    list = new ChooseList(0, this);
    list.addOption(list.new Option(0, "Resume"));
    list.addOption(list.new Option(1, "Save"));
    list.addOption(list.new Option(2, "Main Menu"));
    list.addOption(list.new Option(3, "Exit"));
  }
View Full Code Here

  private String splash = "Grave Robber Test v1.0";

  public GuiMainMenu(Game game, int width, int height) {
    super(game, width, height);
    this.pauseGame = true;
    list = new ChooseList(0, this);
    list.setMaximumDisplayed(10);
    list.addOption(list.new Option(0, "Create"));
    list.addOption(list.new Option(1, "Load"));
    list.addOption(list.new Option(2, "Options"));
    list.addOption(list.new Option(3, "Exit"));
View Full Code Here

TOP

Related Classes of game.gui.elements.ChooseList

Copyright © 2018 www.massapicom. 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.