diff options
Diffstat (limited to 'include/components.hpp')
-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 */ |