aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/events/UseBlockEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/events/UseBlockEvent.kt')
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/UseBlockEvent.kt11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/events/UseBlockEvent.kt b/src/main/kotlin/moe/nea/firmament/events/UseBlockEvent.kt
deleted file mode 100644
index 8bbe0de..0000000
--- a/src/main/kotlin/moe/nea/firmament/events/UseBlockEvent.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-
-package moe.nea.firmament.events
-
-import net.minecraft.entity.player.PlayerEntity
-import net.minecraft.util.Hand
-import net.minecraft.util.hit.BlockHitResult
-import net.minecraft.world.World
-
-data class UseBlockEvent(val player: PlayerEntity, val world: World, val hand: Hand, val hitResult: BlockHitResult) : FirmamentEvent.Cancellable() {
- companion object : FirmamentEventBus<UseBlockEvent>()
-}