summary refs log tree commit diff stats
path: root/src/script_system.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2021-03-13 15:30:20 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2021-03-13 15:34:50 -0500
commit4c8e15722822d0e5e872f872838a8d71af84e1d4 (patch)
tree76ee8a4f8ee5bd24067b4d94b1a5dc2594dd5444 /src/script_system.h
parent02c991e5ea1ec93c8245157a3f174b547774a7e3 (diff)
downloadtanetane-4c8e15722822d0e5e872f872838a8d71af84e1d4.tar.gz
tanetane-4c8e15722822d0e5e872f872838a8d71af84e1d4.tar.bz2
tanetane-4c8e15722822d0e5e872f872838a8d71af84e1d4.zip
Added debug info to Script object
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_;