aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/damage.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-03-14 18:19:06 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-03-14 18:19:06 -0400
commitba651a82d585c181e9632fadba5bb4d683842d44 (patch)
tree8b2711866d497dfd471903c603e2f33bd4a41a5a /include/components/damage.hpp
parenta7d7d7e687cde01ed2d2ec2adb6ee5bfff8bbddc (diff)
better slash, scale fixes
Diffstat (limited to 'include/components/damage.hpp')
-rw-r--r--include/components/damage.hpp22
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_