From 738c3c59a03135f2adeed3804c5a45faf441c947 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 29 Jul 2017 18:25:01 -0400 Subject: added gif support --- include/components/hit.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/components') 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 + 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; -- cgit v1.2.3