diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-03 08:43:55 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-03 08:43:55 -0500 |
commit | 00c312051599729074ff3584a0528c1883e1ff42 (patch) | |
tree | 1778fa2382922d7ef50b787e444946a640e9033a /include/entities.h | |
parent | f00c4bb6b0c4dc1cf2f0c122a4748288ac6ab1a5 (diff) | |
parent | 7ab072caaaec09720ad79cfed5738e89bc60c44f (diff) |
Mouse
Diffstat (limited to 'include/entities.h')
-rw-r--r-- | include/entities.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/entities.h b/include/entities.h index 28fd7e9..f4959d6 100644 --- a/include/entities.h +++ b/include/entities.h @@ -220,13 +220,15 @@ public: class Object : public Entity{ private: - ITEM_ID identifier; + std::string iname; + //ITEM_ID identifier; public: char *pickupDialog; bool questObject = false; Object(); - Object(ITEM_ID id,const char *pd); + //Object(ITEM_ID id,const char *pd); + Object(std::string in,const char *pd); ~Object(); void reloadTexture(void); |