diff options
Diffstat (limited to 'include/components/damage.hpp')
-rw-r--r-- | include/components/damage.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/components/damage.hpp b/include/components/damage.hpp new file mode 100644 index 0000000..c257426 --- /dev/null +++ b/include/components/damage.hpp @@ -0,0 +1,22 @@ +#ifndef COMPONENTS_DAMAGE_HPP_ +#define COMPONENTS_DAMAGE_HPP_ + +#include "base.hpp" + +struct Damage : public Component { + Damage(int p = 0) + : pain(p) {} + Damage(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + int pain; + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + if (def->QueryIntAttribute("value", &pain) != XML_NO_ERROR) + pain = 0; + } +}; + +#endif // COMPONENTS_DAMAGE_HPP_ |