Package com.googlecode.jumpnevolve.graphics.gui.container

Examples of com.googlecode.jumpnevolve.graphics.gui.container.InterfaceContainer


    return this.parentMenu;
  }

  private void createMenuButton() {
    if (!this.menuButtonCreated) {
      InterfaceContainer mainCon = this.gui.getMainContainer();
      if (mainCon instanceof GridContainer) {
        ((GridContainer) mainCon).add(new InterfaceTextButton(
            InterfaceFunctions.LEVEL_EXIT, "Hauptmenü"), 0, 1,
            GridContainer.MODUS_DEFAULT, GridContainer.MODUS_Y_UP);
      } else if (mainCon instanceof BorderContainer) {
View Full Code Here

TOP

Related Classes of com.googlecode.jumpnevolve.graphics.gui.container.InterfaceContainer

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.