IContainer
Link to icontainer
IContainer представляет контейнер предметов, который может содержать несколько стопок предметов, как, например, сундук.
Геттеры/сеттеры
Link to геттерысеттеры
container.containerSize
возвращает размер контейнера типа int.container.getStack(int index)
returns the IItemStack at the given index.container.setStack(int index, IItemStack stack)
sets the IItemStack at the given index.container.asString()
container as string
executestoString
on the container object.
Iterable<IItemStack>
Link to iterableiitemstack
An IContainer is an Iterable<IItemStack>
.
This means that you can use a for-loop on the container to iterate over its IItemStacks.