minecraft-pi-reborn/symbols/src/level/container/FillingContainer.def

19 lines
700 B
Modula-2
Raw Normal View History

2024-01-12 03:10:30 +00:00
extends Container;
2024-01-06 11:30:23 +00:00
method void addItem(ItemInstance *item_instance) = 0x92aa0;
method void clearSlot(int slot) = 0x922f8;
method void release(int slot) = 0x92058;
method void compressLinkedSlotList(int slot) = 0x92280;
method ItemInstance *getLinked(int slot) = 0x92230;
2024-01-22 06:39:43 +00:00
method bool linkEmptySlot(int slot) = 0x92590;
method int getFreeSlot() = 0x91ffc;
method int getSlot(int id) = 0x91ce0;
method int linkSlot(int linked_slot, int unlinked_slot, bool push_aside) = 0x92188;
virtual-method bool add(ItemInstance *item_instance) = 0x30;
2024-01-06 11:30:23 +00:00
property int *linked_slots = 0xc;
property int linked_slots_length = 0x14;
2024-01-22 06:39:43 +00:00
property std::vector<ItemInstance *> items = 0x18;
2024-01-06 11:30:23 +00:00
property bool is_creative = 0x24;