package moe.nea.firmament.events import net.minecraft.world.entity.player.Player import net.minecraft.world.item.ItemStack import net.minecraft.world.InteractionHand import net.minecraft.world.level.Level data class UseItemEvent(val playerEntity: Player, val world: Level, val hand: InteractionHand) : FirmamentEvent.Cancellable() { companion object : FirmamentEventBus() val item: ItemStack = playerEntity.getItemInHand(hand) }