summary refs log tree commit diff stats
path: root/src/script_system.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/script_system.h')
-rw-r--r--src/script_system.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script_system.h b/src/script_system.h index 7ef2dee..6a28430 100644 --- a/src/script_system.h +++ b/src/script_system.h
@@ -32,6 +32,7 @@ private:
32 struct Script { 32 struct Script {
33 std::unique_ptr<sol::thread> runner; 33 std::unique_ptr<sol::thread> runner;
34 std::unique_ptr<sol::coroutine> callable; 34 std::unique_ptr<sol::coroutine> callable;
35 std::string debugInfo;
35 }; 36 };
36 37
37 Game& game_; 38 Game& game_;