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/wander.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/components/wander.hpp (limited to 'include/components/wander.hpp') 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_ -- cgit v1.2.3