Layout

interface Layout

Inheritors

Properties

Link copied to clipboard
abstract var name: String

Functions

Link copied to clipboard
abstract suspend fun delete()
Link copied to clipboard
abstract suspend fun getBoots(): ItemStack?
Link copied to clipboard
abstract suspend fun getChestplate(): ItemStack?
Link copied to clipboard
abstract suspend fun getHelmet(): ItemStack?
Link copied to clipboard
abstract suspend fun getHotbar(): Array<ItemStack>
Link copied to clipboard
abstract suspend fun getInventory(): Array<ItemStack>
Link copied to clipboard
abstract suspend fun getLeggings(): ItemStack?
Link copied to clipboard
open suspend fun getName(): String
Link copied to clipboard
abstract suspend fun setBoots(stack: ItemStack): Layout
Link copied to clipboard
abstract suspend fun setChestplate(stack: ItemStack): Layout
Link copied to clipboard
abstract suspend fun setHelmet(stack: ItemStack): Layout
Link copied to clipboard
abstract suspend fun setHotbar(stacks: Array<ItemStack>): Layout
Link copied to clipboard
abstract suspend fun setInventory(stacks: Array<ItemStack>): Layout
Link copied to clipboard
abstract suspend fun setLeggings(stack: ItemStack): Layout