Package net.minecraft.src

Examples of net.minecraft.src.GuiChat


  public static void open(ScreenType type) {
    GuiScreen toOpen = null;
    StatFileWriter statfile = SpoutClient.getHandle().statFileWriter;
    switch(type) {
      case CHAT_SCREEN:
        toOpen = new GuiChat();
        break;
      case SLEEP_SCREEN:
        toOpen = new GuiSleepMP();
        break;
      case PLAYER_INVENTORY:
View Full Code Here


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

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

            for (; isMultiplayerWorld() && gameSettings.keyBindChat.isPressed(); displayGuiScreen(new GuiChat())) { }

            if (isMultiplayerWorld() && currentScreen == null && (Keyboard.isKeyDown(53) || Keyboard.isKeyDown(181)))
            {
                displayGuiScreen(new GuiChat("/"));
            }

            if (thePlayer.isUsingItem())
            {
                if (!gameSettings.keyBindUseItem.pressed)
View Full Code Here

TOP

Related Classes of net.minecraft.src.GuiChat

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.