aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/object.h')
-rw-r--r--engines/hugo/object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/hugo/object.h b/engines/hugo/object.h
index aa2ed9ba9f..09dcfeb30f 100644
--- a/engines/hugo/object.h
+++ b/engines/hugo/object.h
@@ -73,7 +73,9 @@ public:
int calcMaxScore();
int16 findObject(uint16 x, uint16 y);
void freeObjects();
+ void freeObjectUses();
void loadObjectArr(Common::ReadStream &in);
+ void loadObjectUses(Common::ReadStream &in);
void freeObjectArr();
void loadNumObj(Common::ReadStream &in);
void lookObject(object_t *obj);
@@ -114,6 +116,8 @@ protected:
static const int kMaxObjNumb = 128; // Used in Update_images()
uint16 _objCount;
+ uses_t *_uses;
+ uint16 _usesSize;
void restoreSeq(object_t *obj);