aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/wander.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/wander.hpp
parent11b8e727e04ed6095164bb826541409f88047625 (diff)
component reorginization; entity flashes
Diffstat (limited to 'include/components/wander.hpp')
-rw-r--r--include/components/wander.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/components/wander.hpp b/include/components/wander.hpp
new file mode 100644
index 0000000..2001e89
--- /dev/null
+++ b/include/components/wander.hpp
@@ -0,0 +1,16 @@
+#ifndef COMPONENTS_WANDER_HPP_
+#define COMPONENTS_WANDER_HPP_
+
+/**
+ * Causes the entity to wander about.
+ */
+struct Wander {
+ Wander(float ix = 0, float r = 0)
+ : initialX(ix), range(r), countdown(0) {}
+
+ float initialX;
+ float range;
+ int countdown;
+};
+
+#endif // COMPONENTS_WANDER_HPP_