diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-28 11:45:52 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-28 11:45:52 -0400 |
commit | e2fb36d5da705278fb84246400945f430794d5e7 (patch) | |
tree | ead3dd3a105253decb59437672f32954d44985c0 /include/mob.hpp | |
parent | 174bcd3a415c21fc2c59a3af1b6333faa78b37d0 (diff) |
CAT
Diffstat (limited to 'include/mob.hpp')
-rw-r--r-- | include/mob.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/mob.hpp b/include/mob.hpp index 9f006b9..48be456 100644 --- a/include/mob.hpp +++ b/include/mob.hpp @@ -17,13 +17,17 @@ class Mob : public Entity { protected: unsigned int actCounter; unsigned int actCounterInitial; + bool ridable; public: + Entity *rider; bool aggressive; std::string heyid; + Mob(void); ~Mob(void); void wander(void); + void ride(Entity *e); virtual void act(void) =0; virtual bool bindTex(void) =0; virtual void createFromXML(const XMLElement *e) =0; @@ -53,6 +57,15 @@ public: void createFromXML(const XMLElement *e); }; +class Cat : public Mob { +public: + Cat(void); + + void act(void); + bool bindTex(void); + void createFromXML(const XMLElement *e); +}; + class Rabbit : public Mob { public: Rabbit(void); |