diff --git a/src/Plugin.h b/src/Plugin.h index 418fe5d..1cd5405 100644 --- a/src/Plugin.h +++ b/src/Plugin.h @@ -1,7 +1,7 @@ #pragma once #include "Config.h" -#include +#include #include namespace Cleaner { @@ -13,9 +13,9 @@ class Entry { public: static Entry& getInstance(); - Entry(ll::plugin::NativePlugin& self) : mSelf(self) {} + Entry(ll::mod::NativeMod& self) : mSelf(self) {} - [[nodiscard]] ll::plugin::NativePlugin& getSelf() const { return mSelf; } + [[nodiscard]] ll::mod::NativeMod& getSelf() const { return mSelf; } /// @return True if the plugin is loaded successfully. bool load(); @@ -37,9 +37,9 @@ public: ServerTimeScheduler& getScheduler(); private: - ll::plugin::NativePlugin& mSelf; + ll::mod::NativeMod& mSelf; std::optional mConfig; std::optional mScheduler; }; -} // namespace Cleaner \ No newline at end of file +} // namespace Cleaner