net.chestmc.Slot.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chest-server Show documentation
Show all versions of chest-server Show documentation
A spigot fork to kotlin structure and news.
The newest version!
package net.chestmc
import kotlinx.serialization.Serializable
import org.bukkit.inventory.ItemStack
/**
* A Slot represents a storable index and item for uses with inventory.
* This contains the index of the slot and the item of the slot.
*/
@Serializable
data class Slot(var slot: Int, var item: ItemStack)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy