blob: bfeadf95ae6c1272c67c4760aed9899817b16227 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package moe.nea.firmament.events
import net.minecraft.world.item.ItemStack
import net.minecraft.world.inventory.Slot
import net.minecraft.world.inventory.ClickType
data class SlotClickEvent(
val slot: Slot,
val stack: ItemStack,
val button: Int,
val actionType: ClickType,
) : FirmamentEvent() {
companion object : FirmamentEventBus<SlotClickEvent>()
}
|