net.projecttl.inventory.util.Slot.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.event.inventory.InventoryClickEvent
import org.bukkit.inventory.ItemStack
/**
* Slot for the SimpleInventoryBuilder
*/
open class Slot(val stack: ItemStack, val click: InventoryClickEvent.() -> Unit)