aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.h
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-02-03 08:43:55 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-02-03 08:43:55 -0500
commit00c312051599729074ff3584a0528c1883e1ff42 (patch)
tree1778fa2382922d7ef50b787e444946a640e9033a /include/entities.h
parentf00c4bb6b0c4dc1cf2f0c122a4748288ac6ab1a5 (diff)
parent7ab072caaaec09720ad79cfed5738e89bc60c44f (diff)
Mouse
Diffstat (limited to 'include/entities.h')
-rw-r--r--include/entities.h6
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);