blob: 1081f86473da1c6b06c51af0d671237bc40acf1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package at.hannibal2.skyhanni.events.item
import at.hannibal2.skyhanni.api.event.SkyHanniEvent
import net.minecraft.item.ItemStack
class ItemHoverEvent(val itemStack: ItemStack, private val toolTip0: MutableList<String>) : SkyHanniEvent() {
var toolTip
set(value) {
toolTip0.clear()
toolTip0.addAll(value)
}
get() = toolTip0
}
|