diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-20 08:47:34 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-20 08:47:34 -0500 |
commit | 0a30bd1b2e2f02b6f34225d8976f645c99b53b7e (patch) | |
tree | 16a47672bf5f5bc65efb245b2e9d84a08c1ce2a6 /include/entities.h | |
parent | 20b29fccb6da62d5a07a02477fabac3a80d350dd (diff) |
Started inv ui, new item system
Diffstat (limited to 'include/entities.h')
-rw-r--r-- | include/entities.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/entities.h b/include/entities.h index b590c8d..fe316ad 100644 --- a/include/entities.h +++ b/include/entities.h @@ -110,9 +110,12 @@ public: class Object : public Entity{ public: Object(int); + Object(int, bool, char*); void interact(); + bool questObject = false; + char *pickupDialog; private: - int ID; + int identifier; }; #endif // ENTITIES_H |