aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/mc/FakeSlot.kt
blob: 9793fdf6610143913169c6586e8e025f15d4d826 (plain)
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.world.item.ItemStack
import net.minecraft.world.inventory.Slot

class FakeSlot(
    stack: ItemStack,
    x: Int,
    y: Int
) : Slot(FakeInventory(stack), 0, x, y) {
	init {
		index = 0
	}
}