aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/UseBlockEvent.kt
blob: f22993126cfec3ed4abab2c8cc395418987deb76 (plain)
1
2
3
4
5
6
7
8
9
10
11
package moe.nea.firmament.events

import net.minecraft.world.entity.player.Player
import net.minecraft.world.InteractionHand
import net.minecraft.world.phys.BlockHitResult
import net.minecraft.world.level.Level

data class UseBlockEvent(val player: Player, val world: Level, val hand: InteractionHand, val hitResult: BlockHitResult) : FirmamentEvent.Cancellable() {
    companion object : FirmamentEventBus<UseBlockEvent>()
}