Package net.minecraft.src

Examples of net.minecraft.src.GuiInventory


        break;
      case SLEEP_SCREEN:
        toOpen = new GuiSleepMP();
        break;
      case PLAYER_INVENTORY:
        toOpen = new GuiInventory(SpoutClient.getHandle().thePlayer);
        break;
      case INGAME_MENU:
        toOpen = new GuiIngameMenu();
        break;
      case OPTIONS_MENU:
View Full Code Here


                    }
                }
            }
            while (true);

            for (; gameSettings.keyBindInventory.isPressed(); displayGuiScreen(new GuiInventory(thePlayer))) { }

            for (; gameSettings.keyBindDrop.isPressed(); thePlayer.dropOneItem()) { }

            for (; isMultiplayerWorld() && gameSettings.keyBindChat.isPressed(); displayGuiScreen(new GuiChat())) { }
View Full Code Here

TOP

Related Classes of net.minecraft.src.GuiInventory

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.