Examples of GuiAchievements


Examples of net.minecraft.client.gui.achievement.GuiAchievements

    @Override
    protected void actionPerformed(GuiButton button)
    {
        if (button.id == 0)
        {
            this.mc.displayGuiScreen(new GuiAchievements(this, this.mc.thePlayer.getStatFileWriter()));
        }

        if (button.id == 1)
        {
            this.mc.displayGuiScreen(new GuiStats(this, this.mc.thePlayer.getStatFileWriter()));
View Full Code Here

Examples of net.minecraft.src.GuiAchievements

        break;
      case CONTROLS_MENU:
        toOpen = new GuiControls(GuiSimpleOptions.constructOptionsScreen(new GuiIngameMenu()));
        break;
      case ACHIEVEMENTS_SCREEN:
        toOpen = new GuiAchievements(statfile);
        break;
      case STATISTICS_SCREEN:
        toOpen = new GuiStats(new GuiIngameMenu(), statfile);
        break;
      case GAME_OVER_SCREEN:
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.