We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d49738 commit cbff51bCopy full SHA for cbff51b
src/lse/Entry.h
@@ -7,9 +7,6 @@
7
namespace lse {
8
9
class LegacyScriptEngine {
10
- Config config; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
11
- std::shared_ptr<PluginManager> pluginManager; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
12
-
13
public:
14
static LegacyScriptEngine& getInstance();
15
@@ -30,7 +27,9 @@ class LegacyScriptEngine {
30
27
// bool unload();
31
28
32
29
private:
33
- ll::mod::NativeMod& mSelf;
+ ll::mod::NativeMod& mSelf;
+ Config config; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
+ std::shared_ptr<PluginManager> pluginManager; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
34
};
35
36
} // namespace lse
0 commit comments