diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-30 08:47:24 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-30 08:47:24 -0500 |
commit | 0415b7f0a9305cd43e8fd8c77a8bafd3b8016dd0 (patch) | |
tree | ffa56707d10b2bbcd54e0e571c915c85c708520a /src/entities.cpp | |
parent | fbe1b6c3a0a3427111577e6b77600f5669012583 (diff) |
Working on animations
Diffstat (limited to 'src/entities.cpp')
-rw-r--r-- | src/entities.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index 97b4d35..c2c560a 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -108,7 +108,7 @@ Object::Object(int id):identifier(id){ height = HLINE * 8; maxHealth = health = 1; - //tex = new Texturec(1, item[id].textureLoc); + tex = new Texturec(1, item[id].textureLoc); questObject = false; pickupDialog="\0"; @@ -122,7 +122,7 @@ Object::Object(int id, bool qo, char *pd):identifier(id),questObject(qo),pickupD height = HLINE * 8; maxHealth = health = 1; - //tex = new Texturec(1, item[id].textureLoc); + tex = new Texturec(1, item[id].textureLoc); } |