diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-09-30 08:50:20 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-09-30 08:50:20 -0400 |
commit | a9f617e28ed109786cbdf9457878a2837d292a9a (patch) | |
tree | 492711bb44f97397298006c2e52f4ac8a6f3b19a /src/entities.cpp | |
parent | f39124d141ca3faaa63dd30ba87905837ae47b48 (diff) |
Started names and genders
Diffstat (limited to 'src/entities.cpp')
-rw-r--r-- | src/entities.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index af4b45f..14048a0 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -36,6 +36,12 @@ void Entity::wander(int timeRun, vec2 *v){ //this makes the entites wander about ticksToUse--; //removes one off of the entities timer } +char* Entity::getName(){ + char* buf; + + return buf; +} + Player::Player(){ //sets all of the player specific traits on object creation width = HLINE * 8; height = HLINE * 12; |