use of mekanism.common.inventory.container.slot.VirtualInventoryContainerSlot in project Mekanism by mekanism.
the class QIOItemViewerContainer method addCraftingSlot.
private void addCraftingSlot(CraftingWindowInventorySlot slot, byte tableIndex, int slotIndex) {
VirtualInventoryContainerSlot containerSlot = slot.createContainerSlot();
craftingSlots[tableIndex][slotIndex] = containerSlot;
addSlot(containerSlot);
}
Aggregations