diff options
Diffstat (limited to 'src/Inventory.h')
-rw-r--r-- | src/Inventory.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Inventory.h b/src/Inventory.h index 3c6a19de8..1ad7c4776 100644 --- a/src/Inventory.h +++ b/src/Inventory.h @@ -52,6 +52,8 @@ public: cInventory(cPlayer & a_Owner); + virtual ~cInventory() {} + // tolua_begin /// Removes all items from the entire inventory @@ -150,6 +152,9 @@ public: /// Sends the slot contents to the owner void SendSlot(int a_SlotNum); + /// Update items (e.g. Maps) + void UpdateItems(void); + /// Converts an armor slot number into the ID for the EntityEquipment packet static int ArmorSlotNumToEntityEquipmentID(short a_ArmorSlotNum); |