kr.summitsystems.springbukkit.view.ViewItemLayout.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-bukkit-view Show documentation
Show all versions of spring-bukkit-view Show documentation
Springframework based Bukkit plugin development kit.
package kr.summitsystems.springbukkit.view
import org.bukkit.event.inventory.ClickType
import org.bukkit.event.inventory.InventoryClickEvent
import org.bukkit.inventory.ItemStack
interface ViewItemLayout {
fun onClick(action: (event: InventoryClickEvent) -> Unit): ViewItemLayout
fun onClick(clickType: ClickType, action: (event: InventoryClickEvent) -> Unit): ViewItemLayout
fun cancelOnClick(cancel: Boolean = true): ViewItemLayout
fun getItemStack(): ItemStack
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy