diff options
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; |