blob: ec9785fce331dbb78aaeeb6ae375403fa0b904a8 (
plain)
1
2
3
4
5
6
7
8
9
|
package at.hannibal2.skyhanni.events
import at.hannibal2.skyhanni.data.ClickType
import net.minecraft.entity.Entity
import net.minecraft.item.ItemStack
import net.minecraftforge.fml.common.eventhandler.Cancelable
@Cancelable
class EntityClickEvent(clickType: ClickType, val clickedEntity: Entity?, itemInHand: ItemStack?) : WorldClickEvent(itemInHand, clickType)
|