aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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
*/