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