diff --git a/src/lse/Entry.h b/src/lse/Entry.h index f4a4641..d03f7b1 100644 --- a/src/lse/Entry.h +++ b/src/lse/Entry.h @@ -7,9 +7,6 @@ namespace lse { class LegacyScriptEngine { - Config config; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) - std::shared_ptr pluginManager; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) - public: static LegacyScriptEngine& getInstance(); @@ -30,7 +27,9 @@ class LegacyScriptEngine { // bool unload(); private: - ll::mod::NativeMod& mSelf; + ll::mod::NativeMod& mSelf; + Config config; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) + std::shared_ptr pluginManager; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) }; } // namespace lse