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

10 lines
372 B
Modula-2
Raw Normal View History

2024-01-06 11:30:23 +00:00
extends FillingContainer;
method void selectSlot(int slot) = 0x8d13c;
2024-01-22 06:39:43 +00:00
// It's just FillingContainer_getLinked but with selectedSlot as slot
2024-01-06 11:30:23 +00:00
method ItemInstance *getSelected() = 0x8d134;
2024-01-22 06:39:43 +00:00
// It's just FillingContainer_linkSlot with selectedSlot as linked_slot
method bool moveToSelectedSlot(int unlinked_slot, bool push_aside) = 0x8d148;
2024-01-06 11:30:23 +00:00
property int selectedSlot = 0x28;