net.projecttl.inventory.util.LinkedSlot.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of InventoryGUI-api Show documentation
Show all versions of InventoryGUI-api Show documentation
This is minecraft gui library
package net.projecttl.inventory.util
import org.bukkit.inventory.ItemStack
/**
* A slot implementation, for LinkedInventoryBuilders. Unlike Slot, event-handling is separated to SlotHandler
*/
class LinkedSlot(stack: ItemStack, val handler: SlotHandler): Slot(stack, {})