aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/mixins/hooks/GuiScreenHook.kt
blob: 3c3c7fd7050751ac84a728f13883f614598b62fc (plain)
1
2
3
4
5
6
7
8
package at.hannibal2.skyhanni.mixins.hooks

import at.hannibal2.skyhanni.events.RenderItemTooltipEvent
import net.minecraft.item.ItemStack

fun renderToolTip(stack: ItemStack) {
    RenderItemTooltipEvent(stack).postAndCatch()
}