Examples of GuiSleepMP


Examples of net.minecraft.src.GuiSleepMP

    switch(type) {
      case CHAT_SCREEN:
        toOpen = new GuiChat();
        break;
      case SLEEP_SCREEN:
        toOpen = new GuiSleepMP();
        break;
      case PLAYER_INVENTORY:
        toOpen = new GuiInventory(SpoutClient.getHandle().thePlayer);
        break;
      case INGAME_MENU:
View Full Code Here

Examples of net.minecraft.src.GuiSleepMP

            {
                displayGuiScreen(null);
            }
            else if (thePlayer.isPlayerSleeping() && theWorld != null && theWorld.isRemote)
            {
                displayGuiScreen(new GuiSleepMP());
            }
        }
        else if (currentScreen != null && (currentScreen instanceof GuiSleepMP) && !thePlayer.isPlayerSleeping())
        {
            displayGuiScreen(null);
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.