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

net.silkmc.silk.igui.GuiElement.kt Maven / Gradle / Ivy

There is a newer version: 1.10.7
Show newest version
package net.silkmc.silk.igui

import net.minecraft.world.item.ItemStack
import net.silkmc.silk.igui.events.GuiClickEvent

interface GuiElement {
    suspend fun getItemStack(slotIndex: Int): ItemStack

    fun shouldCancel(clickEvent: GuiClickEvent): Boolean

    suspend fun onClick(clickEvent: GuiClickEvent)

    fun startUsing(gui: Gui) { }

    fun stopUsing(gui: Gui) { }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy