diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-16 18:43:06 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-16 18:43:06 -0400 |
commit | 2bd1eaef1b9ec848933a40049ec8866e2b83a47d (patch) | |
tree | 714a018bdc4b42aa1e9bcac5270190d068cf177b /include/components/aggro.hpp | |
parent | 07b3ae994d0e68b5c266f5aa212024d5064847c2 (diff) |
do not touch birb
Diffstat (limited to 'include/components/aggro.hpp')
-rw-r--r-- | include/components/aggro.hpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/components/aggro.hpp b/include/components/aggro.hpp index 17d646c..f559e6f 100644 --- a/include/components/aggro.hpp +++ b/include/components/aggro.hpp @@ -7,18 +7,17 @@ * Causes the entity to get mad at the player, charge and fight. */ struct Aggro : public Component { - Aggro(const std::string& a) - : arena(a) {} + Aggro(bool y = false) + : yes(y) {} Aggro(XMLElement* imp, XMLElement* def) { fromXML(imp, def); } - std::string arena; + bool yes; void fromXML(XMLElement* imp, XMLElement* def) final { - (void)imp; - // TODO null check..?, imp given - arena = def->StrAttribute("arena"); + (void)imp, (void)def; + // TODO } }; |