From b709a392436d4ed17e214cd9e302ddbd23d71c21 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 12 Oct 2017 08:32:21 -0400 Subject: more lua scripting --- include/components/hit.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/components/hit.hpp') diff --git a/include/components/hit.hpp b/include/components/hit.hpp index 334712b..45e6466 100644 --- a/include/components/hit.hpp +++ b/include/components/hit.hpp @@ -3,14 +3,14 @@ #include "base.hpp" +#include #include struct Hit : public Component { - Hit(int d, bool p = false) - : damage(d), pierce(p) {} + Hit(Attack* a) + : attack(a) {} - int damage; - bool pierce; + Attack* attack; TextureIterator effect; void fromXML(XMLElement* imp, XMLElement* def) final { -- cgit v1.2.3