Package net.minecraft.src

Examples of net.minecraft.src.GuiGameOver


        break;
      case STATISTICS_SCREEN:
        toOpen = new GuiStats(new GuiIngameMenu(), statfile);
        break;
      case GAME_OVER_SCREEN:
        toOpen = new GuiGameOver();
        break;
      case CHANGE_LANGUAGE:
        //TODO: broken
        //toOpen = new GuiLanguage(GuiSimpleOptions.constructOptionsScreen(new GuiIngameMenu()), SpoutClient.getHandle().gameSettings);
        break;
View Full Code Here


        {
            par1GuiScreen = new GuiMainMenu();
        }
        else if (par1GuiScreen == null && thePlayer.getHealth() <= 0)
        {
            par1GuiScreen = new GuiGameOver();
        }

        if (par1GuiScreen instanceof GuiMainMenu)
        {
            gameSettings.showDebugInfo = false;
View Full Code Here

TOP

Related Classes of net.minecraft.src.GuiGameOver

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.