From 16836bb93bf57f01f416d3a0a55d0716dcf50c94 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 23 Mar 2017 07:53:59 -0400 Subject: arrows die, do damage --- include/components.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'include') diff --git a/include/components.hpp b/include/components.hpp index 3f06867..fe56a88 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -610,6 +610,18 @@ struct Aggro : public Component { } }; +struct Hit : public Component { + Hit(int d) + : damage(d) {} + + int damage; + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + (void)def; + } +}; + /** * SYSTEMS */ -- cgit v1.2.3