diff options
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); |