diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-04-01 13:13:53 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-04-01 14:04:09 +0300 |
commit | 836f8dc26f2041aea51c5c953b99f34859db6387 (patch) | |
tree | 8a7c0c4365b618731ca2fcdeaff70f15d4b0ab50 /indra/newview/llluamanager.h | |
parent | b4d699764044301c460560f7665b623a571bf14f (diff) |
Add 'Lua Scripts' floater
Diffstat (limited to 'indra/newview/llluamanager.h')
-rw-r--r-- | indra/newview/llluamanager.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llluamanager.h b/indra/newview/llluamanager.h index a297d14502..70728f958e 100644 --- a/indra/newview/llluamanager.h +++ b/indra/newview/llluamanager.h @@ -80,6 +80,11 @@ public: static std::pair<int, LLSD> waitScriptLine(LuaState& L, const std::string& chunk); static void runScriptOnLogin(); + + static std::map<std::string, std::string> getScriptNames() { return sScriptNames; } + + private: + static std::map<std::string, std::string> sScriptNames; }; class LLRequireResolver |