blob: bfe8649ba97c430a0e9f1cbef201bdca8f1d5178 (
plain)
1
2
3
4
5
6
7
8
|
package at.hannibal2.skyhanni.events
import at.hannibal2.skyhanni.utils.LorenzVec
import net.minecraft.item.ItemStack
class MinionOpenEvent(val inventoryName: String, val inventoryItems: Map<Int, ItemStack>) : LorenzEvent()
class MinionCloseEvent : LorenzEvent()
class MinionStorageOpenEvent(val position: LorenzVec?, val inventoryItems: Map<Int, ItemStack>) : LorenzEvent()
|