aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/events/SlotClickEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/events/SlotClickEvent.kt')
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/SlotClickEvent.kt15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/events/SlotClickEvent.kt b/src/main/kotlin/moe/nea/firmament/events/SlotClickEvent.kt
deleted file mode 100644
index d4abfb0..0000000
--- a/src/main/kotlin/moe/nea/firmament/events/SlotClickEvent.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-
-package moe.nea.firmament.events
-
-import net.minecraft.item.ItemStack
-import net.minecraft.screen.slot.Slot
-import net.minecraft.screen.slot.SlotActionType
-
-data class SlotClickEvent(
- val slot: Slot,
- val stack: ItemStack,
- val button: Int,
- val actionType: SlotActionType,
-) : FirmamentEvent() {
- companion object : FirmamentEventBus<SlotClickEvent>()
-}