1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package moe.nea.firmament.util.mc import util.mc.FakeInventory import net.minecraft.item.ItemStack import net.minecraft.screen.slot.Slot class FakeSlot( stack: ItemStack, x: Int, y: Int ) : Slot(FakeInventory(stack), 0, x, y) { init { id = 0 } }