diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/ai.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h index a099deeca2..815a1ef3a9 100644 --- a/engines/hdb/ai.h +++ b/engines/hdb/ai.h @@ -819,6 +819,21 @@ public: // Inventory Functions bool addToInventory(AIEntity *e); void clearInventory(); + int getInvAmount() { + return _numInventory; + } + int getGemAmount() { + return _numGems; + } + int getMonkeystoneAmount() { + return _numMonkeystones; + } + int getGooCupAmount() { + return _numGooCups; + } + void setGemAmount(int amt) { + _numGems = amt; + } // Player Variables bool _playerDead; |