diff options
Diffstat (limited to 'include/components/aggro.hpp')
-rw-r--r-- | include/components/aggro.hpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/components/aggro.hpp b/include/components/aggro.hpp new file mode 100644 index 0000000..17d646c --- /dev/null +++ b/include/components/aggro.hpp @@ -0,0 +1,25 @@ +#ifndef COMPONENTS_AGGRO_HPP_ +#define COMPONENTS_AGGRO_HPP_ + +#include "base.hpp" + +/** + * Causes the entity to get mad at the player, charge and fight. + */ +struct Aggro : public Component { + Aggro(const std::string& a) + : arena(a) {} + Aggro(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + std::string arena; + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + // TODO null check..?, imp given + arena = def->StrAttribute("arena"); + } +}; + +#endif // COMPONENTS_AGGRO_HPP_ |