diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-29 18:25:01 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-29 18:37:26 -0400 |
commit | 738c3c59a03135f2adeed3804c5a45faf441c947 (patch) | |
tree | 83a533c5a32807bea05ccd55e0a08edb3847c4ef /include/components/hit.hpp | |
parent | 9e540db7d6492168cadcafddbf145ffdd7b21981 (diff) |
added gif support
Diffstat (limited to 'include/components/hit.hpp')
-rw-r--r-- | include/components/hit.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/components/hit.hpp b/include/components/hit.hpp index d2e80ca..334712b 100644 --- a/include/components/hit.hpp +++ b/include/components/hit.hpp @@ -3,12 +3,15 @@ #include "base.hpp" +#include <texture.hpp> + struct Hit : public Component { Hit(int d, bool p = false) : damage(d), pierce(p) {} int damage; bool pierce; + TextureIterator effect; void fromXML(XMLElement* imp, XMLElement* def) final { (void)imp; |