diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-30 08:51:56 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-30 08:51:56 -0400 |
commit | 5d4d0b5845d2b660e6c0d689c16572be538bbbe7 (patch) | |
tree | ce2fa5380fe18026d6c02521915fd4a2e98fd925 /src/entities.cpp | |
parent | 8deee144293102d4498424c38161d13c877250b2 (diff) | |
parent | cfa79da357843f7918ff7108bce80acb59df3413 (diff) |
quest stuff
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 8689b00..273d038 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; |