diff options
Diffstat (limited to 'src/example/script.cpp')
-rw-r--r-- | src/example/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/example/script.cpp b/src/example/script.cpp index c82764c..a23295b 100644 --- a/src/example/script.cpp +++ b/src/example/script.cpp @@ -39,7 +39,7 @@ int main() { ScriptSystem system{component_manager}; // Create game object with Transform and BehaviorScript components - auto & obj = component_manager.new_object("name"); + GameObject obj = component_manager.new_object("name"); obj.add_component<BehaviorScript>().set_script<MyScript>(); // Update all scripts. This should result in MyScript::update being called |