aboutsummaryrefslogtreecommitdiffstats
path: root/src/script.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-17 13:55:22 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-17 13:55:22 -0400
commitceda39e4bd2e3a7794f0cb4f96df1de6ebee47d2 (patch)
treeba5451b6dcade324114d145d526e7c5b5465689a /src/script.hpp
parentdbb26902ed54ce308fdcec4697616e152f2894fd (diff)
parent0236eb7f6391c9d925dcaaddb8cb01ecfb7d5e55 (diff)
update with master; using VBOs for fonts
Diffstat (limited to 'src/script.hpp')
-rw-r--r--src/script.hpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/script.hpp b/src/script.hpp
index f86c8cd..0ac9e63 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;
@@ -48,10 +50,14 @@ private:
sol::table game;
entityx::EntityManager& manager;
+
+ // TODO possibly emit events to spawn worlds instead of passing the
+ // world system around like a toy
+ WorldSystem &worldSystem;
public:
- ScriptSystem(entityx::EntityManager& _manager):
- manager(_manager) {}
+ ScriptSystem(entityx::EntityManager& _mg, WorldSystem& _ws):
+ manager(_mg), worldSystem(_ws) {}
~ScriptSystem(void) {}