ru.astrainteractive.astralibs.menu.clicker.Click.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spigot-gui Show documentation
Show all versions of spigot-gui Show documentation
Core utilities for spigot development
package ru.astrainteractive.astralibs.menu.clicker
import org.bukkit.event.inventory.InventoryClickEvent
fun interface Click {
operator fun invoke(e: InventoryClickEvent)
object Empty : Click {
override fun invoke(e: InventoryClickEvent) = Unit
}
}