diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-28 21:32:04 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-28 21:32:04 -0400 |
commit | a466eb8fd6e5707aaa1bfafa28535b82c67d69d8 (patch) | |
tree | ce3a09b7b98584b3d42351eae7fd7e183e38b7f8 /include/mob.hpp | |
parent | 00f633afb62ed6914205639b44dcdaf839a2c2f7 (diff) |
chests?, custom controls
Diffstat (limited to 'include/mob.hpp')
-rw-r--r-- | include/mob.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/mob.hpp b/include/mob.hpp index 7ef4ff9..24b8ed9 100644 --- a/include/mob.hpp +++ b/include/mob.hpp @@ -126,4 +126,15 @@ public: void saveToXML(void) final; }; +class Chest : public Mob { +public: + Chest(void); + + void act(void); + void onHit(unsigned int); + bool bindTex(void); + void createFromXML(XMLElement *e, World *w) final; + void saveToXML(void) final; +}; + #endif // MOB_H_ |