From 316df0931c66e43e69f21bda28c77b9bdb1e8bca Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 13 Jun 2017 21:01:08 -0400 Subject: component reorginization; entity flashes --- include/components/aggro.hpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 include/components/aggro.hpp (limited to 'include/components/aggro.hpp') 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_ -- cgit v1.2.3