Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerRotaryCondensentrator


{
  public TileEntityRotaryCondensentrator tileEntity;

  public GuiRotaryCondensentrator(InventoryPlayer inventory, TileEntityRotaryCondensentrator tentity)
  {
    super(new ContainerRotaryCondensentrator(inventory, tentity));
    tileEntity = tentity;

    guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiRotaryCondensentrator.png")));
    guiElements.add(new GuiSlot(SlotType.NORMAL, this, MekanismUtils.getResource(ResourceType.GUI, "GuiRotaryCondensentrator.png"), 4, 24).with(SlotOverlay.PLUS));
    guiElements.add(new GuiSlot(SlotType.NORMAL, this, MekanismUtils.getResource(ResourceType.GUI, "GuiRotaryCondensentrator.png"), 4, 55).with(SlotOverlay.MINUS));
View Full Code Here


      case 5:
        return new ContainerAdvancedElectricMachine(player.inventory, (TileEntityAdvancedElectricMachine)tileEntity);
      case 6:
        return new ContainerElectricMachine(player.inventory, (TileEntityElectricMachine)tileEntity);
      case 7:
        return new ContainerRotaryCondensentrator(player.inventory, (TileEntityRotaryCondensentrator)tileEntity);
      case 8:
        return new ContainerEnergyCube(player.inventory, (TileEntityEnergyCube)tileEntity);
      case 9:
        return new ContainerNull(player, (TileEntityContainerBlock)tileEntity);
      case 10:
View Full Code Here

TOP

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

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.