Package forestry.core.circuits.ItemSolderingIron

Examples of forestry.core.circuits.ItemSolderingIron.SolderingInventory


        case NaturalistBenchGUI:
          return new GuiEscritoire(player, (TileEscritoire) getTileForestry(world, x, y, z));

        case SolderingIronGUI:
          return new GuiSolderingIron(player.inventory, new SolderingInventory());

        default:
          for (IGuiHandler handler : PluginManager.guiHandlers) {
            Object element = handler.getClientGuiElement(id, player, world, x, y, z);
            if (element != null)
View Full Code Here


        case NaturalistBenchGUI:
          return new ContainerEscritoire(player, (TileEscritoire) getTileForestry(world, x, y, z));

        case SolderingIronGUI:
          return new ContainerSolderingIron(player.inventory, new SolderingInventory());

        default:
          for (IGuiHandler handler : PluginManager.guiHandlers) {
            Object element = handler.getServerGuiElement(id, player, world, x, y, z);
            if (element != null)
View Full Code Here

TOP

Related Classes of forestry.core.circuits.ItemSolderingIron.SolderingInventory

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.