Examples of OptionsScreen


Examples of com.mojang.minecraft.gui.OptionsScreen

   }

   protected final void onButtonClick(Button var1) {
      if(var1.id == 0) {
         this.minecraft.setCurrentScreen(new OptionsScreen(this, this.minecraft.settings));
      }

      if(var1.id == 1) {
         this.minecraft.setCurrentScreen(new GenerateLevelScreen(this));
      }
View Full Code Here

Examples of com.mojang.minecraft.gui.OptionsScreen

   }

   protected final void onButtonClick(Button var1) {
      if(var1.id == 0) {
         this.minecraft.setCurrentScreen(new OptionsScreen(this, this.minecraft.settings));
      }

      if(var1.id == 1) {
         this.minecraft.setCurrentScreen(new GenerateLevelScreen(this));
      }
View Full Code Here

Examples of com.teamjmonkey.ui.OptionsScreen

    private Element popupElement;
    private Element currentElement;
    private SoundHandle sound;

    public MainMenuAppState() {
        nifty.fromXml("Interface/Nifty/MainMenu.xml", "start", this, new OptionsScreen());
        //nifty.addXml("Interface/Nifty/OptionsMenu.xml");

        nifty.getSoundSystem().addSound("titleSound", "Sounds/click.ogg");

        sound = nifty.getSoundSystem().getSound("titleSound");
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.