diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-23 07:53:59 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-23 07:53:59 -0400 |
commit | 16836bb93bf57f01f416d3a0a55d0716dcf50c94 (patch) | |
tree | 907aa7768130e954502efb8db0c3bec828b83790 /include | |
parent | 2e67f6d04f79a3b9338466d289df0074cf4c454e (diff) |
arrows die, do damage
Diffstat (limited to 'include')
-rw-r--r-- | include/components.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
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 */ |