All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.astrainteractive.astralibs.menu.clicker.Click.kt Maven / Gradle / Ivy

There is a newer version: 2.28.0
Show newest version
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
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy