Files
KSpigot/src/main/kotlin/net/axay/kspigot/gui/elements/GUIFreeSlot.kt
2020-10-24 23:25:32 +02:00

11 lines
301 B
Kotlin

package net.axay.kspigot.gui.elements
import net.axay.kspigot.gui.ForInventory
import net.axay.kspigot.gui.GUIClickEvent
import net.axay.kspigot.gui.GUISlot
class GUIFreeSlot<T : ForInventory> : GUISlot<T>() {
override fun onClick(clickEvent: GUIClickEvent<T>) {
/* do nothing */
}
}