blob: e0a96d7e5db6f46952d737ecf6e6e6f2a70f1366 (
plain)
1
2
3
4
5
6
|
package at.hannibal2.skyhanni.events
import at.hannibal2.skyhanni.data.ClickType
import net.minecraft.item.ItemStack
class ItemClickEvent(itemInHand: ItemStack?, clickType: ClickType) : WorldClickEvent(itemInHand, clickType)
|