Package net.axay.kspigot.gui.elements

Types

AbstractGUISpaceCompound
Link copied to clipboard
abstract class AbstractGUISpaceCompound<T : ForInventory, E>
GUIButton
Link copied to clipboard
open class GUIButton<T : ForInventory>(icon: ItemStack, action: (GUIClickEvent<T>) -> Unit) : GUIElement<T>
GUIButtonInventoryChange
Link copied to clipboard
class GUIButtonInventoryChange<T : ForInventory>(icon: ItemStack, changeToGUICallback: () -> GUI<*>, changeToPageInt: Int?, onChange: (GUIClickEvent<T>) -> Unit?) : GUIButton<T>
GUIButtonPageChange
Link copied to clipboard
class GUIButtonPageChange<T : ForInventory>(icon: ItemStack, calculator: GUIPageChangeCalculator, shouldChange: (GUIClickEvent<T>) -> Boolean?, onChange: (GUIClickEvent<T>) -> Unit?) : GUIButton<T>
GUICompoundElement
Link copied to clipboard
open class GUICompoundElement<T : ForInventory>(icon: ItemStack, onClick: (GUIClickEvent<T>) -> Unit?)
A simple compound element, covering the most common compound use cases.
GUIFreeSlot
Link copied to clipboard
class GUIFreeSlot<T : ForInventory> : GUISlot<T>
GUIPlaceholder
Link copied to clipboard
class GUIPlaceholder<T : ForInventory>(icon: ItemStack) : GUIElement<T>
GUIRectSpaceCompound
Link copied to clipboard
class GUIRectSpaceCompound<T : ForInventory, E>(invType: GUIType<T>, iconGenerator: (E) -> ItemStack, onClick: (GUIClickEvent<T>, E) -> Unit?, compoundWidth: Int) : AbstractGUISpaceCompound<T, E>
GUISpaceCompound
Link copied to clipboard
class GUISpaceCompound<T : ForInventory, E>(invType: GUIType<T>, iconGenerator: (E) -> ItemStack, onClick: (GUIClickEvent<T>, E) -> Unit?) : AbstractGUISpaceCompound<T, E>
GUISpaceCompoundElement
Link copied to clipboard
class GUISpaceCompoundElement<T : ForInventory, E> : GUIElement<T>
GUISpaceCompoundScrollButton
Link copied to clipboard
class GUISpaceCompoundScrollButton<T : ForInventory>(icon: ItemStack, compound: AbstractGUISpaceCompound<T, *>, scrollDistance: Int, scrollTimes: Int, reverse: Boolean) : GUIButton<T>