aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/wander.hpp
blob: d2751583f2458c9a79bf2321066d0a227cbbec5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef COMPONENTS_WANDER_HPP_
#define COMPONENTS_WANDER_HPP_

#include <string>

#include <systems/lua.hpp>

/**
 * Causes the entity to wander about.
 */
struct Wander {
	Wander(const std::string& s = "")
		: script(LuaSystem::makeScript(s)) {}

	LuaScript script;
};

#endif // COMPONENTS_WANDER_HPP_