From 3004bca85c245c2ec77c4c1bd9343c96191c7ccf Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 1 Sep 2019 14:45:42 -0400 Subject: made all formatting match --- src/script.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/script.cpp') 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(*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 #include -void ScriptSystem::scriptExport() +void ScriptSystem::scriptExport(void) { - std::function func = [this](sol::table t){ return spawn(t);}; @@ -174,3 +173,4 @@ sol::table ScriptSystem::spawn(sol::object param) return *toRet; } + -- cgit v1.2.3