Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerFluidicPlenisher


      case 40:
        return new ContainerPRC(player.inventory, (TileEntityPRC)tileEntity);
      case 41:
        return new ContainerPortableTank(player.inventory, (TileEntityPortableTank)tileEntity);
      case 42:
        return new ContainerFluidicPlenisher(player.inventory, (TileEntityFluidicPlenisher)tileEntity);
    }

    return null;
  }
View Full Code Here


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

  public GuiFluidicPlenisher(InventoryPlayer inventory, TileEntityFluidicPlenisher tentity)
  {
    super(new ContainerFluidicPlenisher(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.ContainerFluidicPlenisher

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.