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