blob: c257426e37c3ba69dfac7f7746bd4b4f4f37c550 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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_
|