diff options
Diffstat (limited to 'include/entities.h')
-rw-r--r-- | include/entities.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/entities.h b/include/entities.h index 9e0257f..9f5e5df 100644 --- a/include/entities.h +++ b/include/entities.h @@ -26,10 +26,12 @@ public: unsigned char ground; //variable for testing what ground the entity is on to apply certain traits unsigned int texture[]; //TODO: ADD TEXTURES + void spawn(float, float); void draw(void); void wander(int, vec2*); + char* getName(); virtual void interact(){} private: int ticksToUse; //The variable for deciding how long an entity should do a certain task |