Examples of GuiSelectWorld


Examples of net.minecraft.src.GuiSelectWorld

  @Override
  public void buttonClicked(Button btn) {
    hasLoaded = true;
    if (singleplayer == btn) {
      mc.displayGuiScreen(new GuiSelectWorld(this));
    }
    if (multiplayer == btn) {
      mc.displayGuiScreen(new GuiFavorites(this));
    }
    if (resources == btn) {
View Full Code Here

Examples of net.minecraft.src.GuiSelectWorld

  public void drawScreen(int mouseX, int mouseY, float scroll) {
    super.drawScreen(mouseX, mouseY, scroll);
    if (Keyboard.isKeyDown(Keyboard.KEY_M)) {
      //mc.displayGuiScreen(new GuiFavorites(this));
    } else if (Keyboard.isKeyDown(Keyboard.KEY_S)) {
      mc.displayGuiScreen(new GuiSelectWorld(this));
    } else if (Keyboard.isKeyDown(Keyboard.KEY_T)) {
      //mc.displayGuiScreen(new GuiScreenTemporaryResourcePackSelect());
    } else if (Keyboard.isKeyDown(Keyboard.KEY_O)) {
      mc.displayGuiScreen(GuiSimpleOptions.constructOptionsScreen(new GuiIngameMenu()));
    }
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.