diff options
Diffstat (limited to 'src/main/java/gregtech/api')
-rw-r--r-- | src/main/java/gregtech/api/gui/GT_Slot_Holo_ME.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/gui/GT_Slot_Holo_ME.java b/src/main/java/gregtech/api/gui/GT_Slot_Holo_ME.java new file mode 100644 index 0000000000..08a11d29f4 --- /dev/null +++ b/src/main/java/gregtech/api/gui/GT_Slot_Holo_ME.java @@ -0,0 +1,9 @@ +package gregtech.api.gui; + +import net.minecraft.inventory.IInventory; + +public class GT_Slot_Holo_ME extends GT_Slot_Holo { + public GT_Slot_Holo_ME(IInventory inventory, int slotIndex, int xPos, int yPos, boolean aCanInsertItem, boolean aCanStackItem) { + super(inventory, slotIndex, xPos, yPos, aCanInsertItem, aCanStackItem, Integer.MAX_VALUE); + } +} |