blob: 848004262228725a7dc122507e148b40e8942deb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package at.hannibal2.skyhanni.events
import at.hannibal2.skyhanni.data.ClickType
import at.hannibal2.skyhanni.features.garden.CropType
import net.minecraft.block.state.IBlockState
import net.minecraft.item.ItemStack
class CropClickEvent(
val crop: CropType,
val blockState: IBlockState,
val clickType: ClickType,
val itemInHand: ItemStack?
): LorenzEvent()
|