diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-07-06 17:07:11 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-07-06 17:07:11 -0400 |
commit | 1f762f82f929cfd21222739a627a32e6199c34a9 (patch) | |
tree | f6a9f5dbac7f52ea99fdbed051c57ce7db7cfc70 /include/entities.hpp | |
parent | 791ebed6017b8846f8bd63c323c12a5c56fe14b9 (diff) |
bow work, fixed dirt drawing
Diffstat (limited to 'include/entities.hpp')
-rw-r--r-- | include/entities.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/entities.hpp b/include/entities.hpp index 2d96a9f..1bb2924 100644 --- a/include/entities.hpp +++ b/include/entities.hpp @@ -303,6 +303,18 @@ public: virtual void createFromXML(XMLElement *e, World *w=nullptr) =0; virtual void saveToXML(void) =0; +/* Entity + + ** + * Forces the given entity to follow this one. + * + void lead(Entity *e, unsigned int how); + + ** + * Attempts to break free from any following. + * + void unfollow(void);*/ + // a common constructor, clears variables Entity(void); |