inventory
fun inventory(inventory: Inventory, id: String = inventory.toString()): CustomInventory
Content copied to clipboard
fun inventory(inventory: Inventory, id: String = inventory.toString(), action: CustomInventory.() -> Unit): CustomInventory
Content copied to clipboard
Inventory から CustomInventory を生成する。
Return
Since
2.3.0
Parameters
inventory
Inventory
id
インベントリの識別子 default: inventory.toString()
fun inventory(display: String, type: InventoryType, id: String = display): CustomInventory
Content copied to clipboard
InventoryType から CustomInventory を生成する。
Return
Since
2.3.0
Parameters
display
インベントリのタイトル
type
インベントリの種類
id
インベントリの識別子 default: display
fun inventory(display: String, type: InventoryType, id: String = display, action: CustomInventoryAction): CustomInventory
Content copied to clipboard
InventoryType から CustomInventory を生成する。
Return
Since
2.3.0
Parameters
display
インベントリのタイトル
type
インベントリの種類
id
インベントリの識別子 default: display
action
インベントリに対して実行する処理
fun inventory(display: String, line: Int = 3, id: String = display): CustomInventory
Content copied to clipboard
チェストタイプの CustomInventory を生成する。
Return
Since
2.3.0
Parameters
display
インベントリのタイトル
line
インベントリの行数 default: 3
id
インベントリの識別子 default: display
fun inventory(display: String, line: Int = 3, id: String = display, action: CustomInventoryAction): CustomInventory
Content copied to clipboard
チェストタイプの CustomInventory を生成する。
Return
Since
2.3.0
Parameters
display
インベントリのタイトル
line
インベントリの行数 default: 3
id
インベントリの識別子 default: display
action
インベントリに対して実行する処理