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

import net.minecraft.item.ItemStack

/**
 * Note: This event is async and may not be executed on the main minecraft thread.
 */
data class OwnInventorItemUpdateEvent(val itemStack: ItemStack): LorenzEvent()