aboutsummaryrefslogtreecommitdiffstats
path: root/src/script.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-01 14:45:42 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-01 14:45:42 -0400
commit3004bca85c245c2ec77c4c1bd9343c96191c7ccf (patch)
tree2c007f9f270a658b13f6c3cefe358415b3d16025 /src/script.cpp
parente7fee98e0ee15665b40b383baf925356bb81f20d (diff)
made all formatting match
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/script.cpp b/src/script.cpp
index ffefb1d..80ac538 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -24,14 +24,15 @@
* SYSTEM SPECIFIC *
*********************/
-void ScriptSystem::configure([[maybe_unused]]entityx::EntityManager& entities,
- [[maybe_unused]]entityx::EventManager& events)
+void ScriptSystem::configure(entityx::EntityManager& entities,
+ entityx::EventManager& events)
{
this->manager = &entities;
this->events = &events;
events.subscribe<EntitySpawnEvent>(*this);
+ // Init after systems.configure() in engine.cpp
//init();
}
@@ -39,7 +40,6 @@ void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entites,
[[maybe_unused]] entityx::EventManager& events,
[[maybe_unused]] entityx::TimeDelta dt)
{
-
}
@@ -81,9 +81,8 @@ void ScriptSystem::doFile(void)
#include <components/Script.hpp>
#include <components/Velocity.hpp>
-void ScriptSystem::scriptExport()
+void ScriptSystem::scriptExport(void)
{
-
std::function<sol::table(sol::table)> func =
[this](sol::table t){ return spawn(t);};
@@ -174,3 +173,4 @@ sol::table ScriptSystem::spawn(sol::object param)
return *toRet;
}
+