aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/aggro.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-06-13 21:01:08 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-06-13 21:01:08 -0400
commit316df0931c66e43e69f21bda28c77b9bdb1e8bca (patch)
treed98231e4b41d046a2a60ee9c6f1cc724a9e3837d /include/components/aggro.hpp
parent11b8e727e04ed6095164bb826541409f88047625 (diff)
component reorginization; entity flashes
Diffstat (limited to 'include/components/aggro.hpp')
-rw-r--r--include/components/aggro.hpp25
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_