aboutsummaryrefslogtreecommitdiffstats
path: root/include/components
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-09-27 11:35:22 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-09-27 11:35:22 -0400
commit48cd8419bb274345fe386d47843f9aa16910e090 (patch)
treea0e31b43b0f38d6de8d3879b29563cfee1b19ced /include/components
parent8be1f74e878950cbbac3f05451341fc18892518b (diff)
lua-scripted wandering
Diffstat (limited to 'include/components')
-rw-r--r--include/components/wander.hpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/components/wander.hpp b/include/components/wander.hpp
index 2001e89..d275158 100644
--- a/include/components/wander.hpp
+++ b/include/components/wander.hpp
@@ -1,16 +1,18 @@
#ifndef COMPONENTS_WANDER_HPP_
#define COMPONENTS_WANDER_HPP_
+#include <string>
+
+#include <systems/lua.hpp>
+
/**
* Causes the entity to wander about.
*/
struct Wander {
- Wander(float ix = 0, float r = 0)
- : initialX(ix), range(r), countdown(0) {}
+ Wander(const std::string& s = "")
+ : script(LuaSystem::makeScript(s)) {}
- float initialX;
- float range;
- int countdown;
+ LuaScript script;
};
#endif // COMPONENTS_WANDER_HPP_