aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events/OwnInventoryItemUpdateEvent.kt
blob: a7a5ba4913bfebca5c691246d25b5f75ef1efa1e (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 OwnInventoryItemUpdateEvent(val itemStack: ItemStack) : LorenzEvent()