Package mekanism.common.inventory.slot

Examples of mekanism.common.inventory.slot.SlotOutput


  public ContainerElectricMachine(InventoryPlayer inventory, TileEntityElectricMachine tentity)
  {
    tileEntity = tentity;
    addSlotToContainer(new Slot(tentity, 0, 56, 17));
    addSlotToContainer(new SlotDischarge(tentity, 1, 56, 53));
    addSlotToContainer(new SlotOutput(tentity, 2, 116, 35));
    addSlotToContainer(new SlotMachineUpgrade(tentity, 3, 180, 11));
    int slotX;

    for(slotX = 0; slotX < 3; slotX++)
    {
View Full Code Here


  public ContainerPortableTank(InventoryPlayer inventory, TileEntityPortableTank tentity)
  {
    tileEntity = tentity;
    addSlotToContainer(new Slot(tentity, 0, 146, 19));
    addSlotToContainer(new SlotOutput(tentity, 1, 146, 51));
    int slotX;

    for(slotX = 0; slotX < 3; ++slotX)
    {
      for(int slotY = 0; slotY < 9; ++slotY)
View Full Code Here

  public ContainerFluidicPlenisher(InventoryPlayer inventory, TileEntityFluidicPlenisher tentity)
  {
    tileEntity = tentity;
    addSlotToContainer(new Slot(tentity, 0, 28, 20));
    addSlotToContainer(new SlotOutput(tentity, 1, 28, 51));
    addSlotToContainer(new SlotDischarge(tentity, 2, 143, 35));
    int slotX;

    for(slotX = 0; slotX < 3; ++slotX)
    {
View Full Code Here

  {
    tileEntity = tentity;
    addSlotToContainer(new SlotStorageTank(tentity, 0, 5, 25));
    addSlotToContainer(new SlotStorageTank(tentity, 1, 5, 56));
    addSlotToContainer(new Slot(tentity, 2, 155, 25));
    addSlotToContainer(new SlotOutput(tentity, 3, 155, 56));
    addSlotToContainer(new SlotDischarge(tentity, 4, 155, 5));

    int slotX;

    for(slotX = 0; slotX < 3; ++slotX)
View Full Code Here

TOP

Related Classes of mekanism.common.inventory.slot.SlotOutput

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.