aboutsummaryrefslogtreecommitdiffstats
path: root/include/components.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-02-09 20:26:32 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-02-09 20:26:32 -0500
commit27892bc40122494385bdbe5eb84aee52737f9c13 (patch)
treec8145ac93afbfc4d30e78dea8dc2a5de6e2b0972 /include/components.hpp
parent7f77420e0ea5f1b5a36539b06a1207c98bec1927 (diff)
skirl; angry
Diffstat (limited to 'include/components.hpp')
-rw-r--r--include/components.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/components.hpp b/include/components.hpp
index 14cff81..ebc256d 100644
--- a/include/components.hpp
+++ b/include/components.hpp
@@ -409,6 +409,16 @@ struct Wander {
};
/**
+ * Causes the entity to get mad at the player, charge and fight.
+ */
+struct Aggro {
+ Aggro(const std::string& a)
+ : arena(a) {}
+
+ std::string arena;
+};
+
+/**
* SYSTEMS
*/