Package buildcraft.transport.gui

Examples of buildcraft.transport.gui.GuiGateInterface


    return gui;
  }

  @Override
  public Object getClientGui(InventoryPlayer inventory, int side) {
    GuiGateInterface gui = new GuiGateInterface(inventory, wrapper);
    gui.mc = Minecraft.getMinecraft();
    gui.setGate(this.gates[side]);
    ((ContainerGateInterface)gui.inventorySlots).setGate(side);
    gui.slots.clear();
    return gui;
  }
View Full Code Here


        case GuiIds.PIPE_LOGEMERALD_ITEM:
          return new GuiEmzuliPipe(player.inventory, (PipeItemsEmzuli) pipe.pipe);

        case GuiIds.GATES:
          return new GuiGateInterface(player.inventory, pipe.pipe);

        default:
          return null;
      }
    } catch (Exception ex) {
View Full Code Here

TOP

Related Classes of buildcraft.transport.gui.GuiGateInterface

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.