aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events/WorldClickEvent.kt
blob: 4597041a1d32f7337014b943fa95ab2cf456e094 (plain)
1
2
3
4
5
6
7
8
package at.hannibal2.skyhanni.events

import at.hannibal2.skyhanni.data.ClickType
import net.minecraft.item.ItemStack
import net.minecraftforge.fml.common.eventhandler.Cancelable

@Cancelable
open class WorldClickEvent(val itemInHand: ItemStack?, val clickType: ClickType) : LorenzEvent()