diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-10 23:55:54 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-10 23:55:54 -0400 |
commit | 2b095e30f7786526da9339ccada3aae7f2ab5df4 (patch) | |
tree | 2f1b89406e387308f7d59818963a14e0ed8c6858 /src/script.hpp | |
parent | 2349bd2ffdd7b312c4b13e5794f12d2b7613f3b4 (diff) |
Started world system
Diffstat (limited to 'src/script.hpp')
-rw-r--r-- | src/script.hpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/script.hpp b/src/script.hpp index d4e2234..5c4c780 100644 --- a/src/script.hpp +++ b/src/script.hpp @@ -24,6 +24,8 @@ #include <entityx/entityx.h> #include <sol/sol.hpp> +#include "world.hpp" + struct EntitySpawnEvent { sol::object ref; @@ -47,10 +49,12 @@ private: sol::state lua; entityx::EntityManager& manager; + + WorldSystem &worldSystem; public: - ScriptSystem(entityx::EntityManager& _manager): - manager(_manager) {} + ScriptSystem(entityx::EntityManager& _mg, WorldSystem& _ws): + manager(_mg), worldSystem(_ws) {} ~ScriptSystem(void) {} |