aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-02 01:05:57 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-02 01:05:57 -0400
commitea35ad60506407040f7b9fae65c5bdc18f9576bb (patch)
tree7933d683cf84c6cd27ae2568404ed6026637b5b8 /src/engine.cpp
parente8d3e8f0522b6d7896f1e3d330c70af5376f7c4c (diff)
Added Lua update function that allows certain entities to update every loop
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index f235651..aa3ccc5 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -67,6 +67,7 @@ void Engine::logicLoop(void)
});
systems.update<InputSystem>(dt);
+ systems.update<ScriptSystem>(dt);
/*******************
* LOGIC UPDATES *