Package-level declarations

Types

Link copied to clipboard
data class MinecraftVersion(val first: Int, val second: Int, val third: Int) : Comparable<MinecraftVersion>

Properties

Link copied to clipboard
val Player.armor: Double
Link copied to clipboard
val ATTRIBUTE_ARMOR: Attribute
Link copied to clipboard
val ATTRIBUTE_MAX_HEALTH: Attribute
Link copied to clipboard
Link copied to clipboard
val Player.emptySpace: Int

Functions

Link copied to clipboard
fun Event.call(): Boolean
Link copied to clipboard
fun <T : Event> createBukkitTrigger(clazz: Class<T>, valueMapper: (T) -> UUID? = { if (it is PlayerEvent) it.player.uniqueId else null }, keyMapper: (T) -> Any = { UUID.randomUUID() }): HudBukkitEventTrigger<T>
Link copied to clipboard
fun Player.storage(material: Material): Int
fun Player.storage(target: ItemStack?): Int
Link copied to clipboard
fun Player.toHud(): HudPlayer?
Link copied to clipboard
fun Player.totalAmount(material: Material): Int
fun Player.totalAmount(item: ItemStack): Int
Link copied to clipboard
fun Event.toUpdateEvent(key: Any = UUID.randomUUID()): BukkitEventUpdateEvent
Link copied to clipboard
inline fun <T : Event, R : Any> UpdateEvent.unwrap(block: (T) -> R): R