diff options
Diffstat (limited to 'engines/fullpipe/inventory.h')
-rw-r--r-- | engines/fullpipe/inventory.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/fullpipe/inventory.h b/engines/fullpipe/inventory.h index 902ecffeb6..8d72ffc8be 100644 --- a/engines/fullpipe/inventory.h +++ b/engines/fullpipe/inventory.h @@ -97,6 +97,13 @@ class CInventory2 : public CInventory { CInventory2(); bool loadPartial(MfcArchive &file); void addItem(int itemId, int count); + void addItem2(StaticANIObject *obj); + void removeItem(int itemId, int count); + void removeItem2(Scene *sceneObj, int itemId, int x, int y, int priority); + + int getInventoryPoolItemFieldCById(int itemId); + int getCountItemsWithId(int itemId); + void rebuildItemRects(); Scene *getScene() { return _scene; } |