Package mekanism.common.inventory.slot

Examples of mekanism.common.inventory.slot.SlotElectricChest


    for(int slotY = 0; slotY < 6; slotY++)
    {
      for(int slotX = 0; slotX < 9; slotX++)
      {
        addSlotToContainer(new SlotElectricChest(getInv(), slotX + slotY * 9, 8 + slotX * 18, 26 + slotY * 18));
      }
    }

    addSlotToContainer(new SlotDischarge(getInv(), 54, 180, 11));

    int slotX;

    for(slotX = 0; slotX < 3; ++slotX)
    {
      for(int slotY = 0; slotY < 9; ++slotY)
      {
        addSlotToContainer(new SlotElectricChest(inventory, slotY + slotX * 9 + 9, 8 + slotY * 18, 148 + slotX * 18));
      }
    }

    for(slotX = 0; slotX < 9; ++slotX)
    {
      addSlotToContainer(new SlotElectricChest(inventory, slotX, 8 + slotX * 18, 206));
    }
  }
View Full Code Here

TOP

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

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.