Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerElectricPump


      case 15:
        return new ContainerAdvancedElectricMachine(player.inventory, (TileEntityAdvancedElectricMachine)tileEntity);
      case 16:
        return new ContainerElectricMachine(player.inventory, (TileEntityElectricMachine)tileEntity);
      case 17:
        return new ContainerElectricPump(player.inventory, (TileEntityElectricPump)tileEntity);
      case 18:
        return new ContainerDynamicTank(player.inventory, (TileEntityDynamicTank)tileEntity);
      case 21:
        EntityRobit robit = (EntityRobit)world.getEntityByID(x);
View Full Code Here


  public ResourceLocation guiLocation = MekanismUtils.getResource(ResourceType.GUI, "GuiElectricPump.png");

  public GuiElectricPump(InventoryPlayer inventory, TileEntityElectricPump tentity)
  {
    super(new ContainerElectricPump(inventory, tentity));
    tileEntity = tentity;

    guiElements.add(new GuiSlot(SlotType.NORMAL, this, guiLocation, 27, 19));
    guiElements.add(new GuiSlot(SlotType.NORMAL, this, guiLocation, 27, 50));
    guiElements.add(new GuiSlot(SlotType.POWER, this, guiLocation, 142, 34).with(SlotOverlay.POWER));
View Full Code Here

TOP

Related Classes of mekanism.common.inventory.container.ContainerElectricPump

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.