fix: fix version

This commit is contained in:
Tsubasa6848
2024-05-27 20:33:44 +08:00
Unverified
parent 1929e0b99d
commit 35f75bd959
3 changed files with 19 additions and 15 deletions
+5 -5
View File
@@ -2,14 +2,14 @@
#include <ll/api/plugin/NativePlugin.h>
#include <ll/api/plugin/RegisterHelper.h>
namespace GMLIB_LegacyRemoteCallApi {
namespace GMLIB {
class LRCA {
class LegacyRemoteCallApi {
public:
static std::unique_ptr<LRCA>& getInstance();
static std::unique_ptr<LegacyRemoteCallApi>& getInstance();
LRCA(ll::plugin::NativePlugin& self) : mSelf(self) {}
LegacyRemoteCallApi(ll::plugin::NativePlugin& self) : mSelf(self) {}
[[nodiscard]] ll::plugin::NativePlugin& getSelf() const { return mSelf; }
@@ -30,4 +30,4 @@ private:
ll::plugin::NativePlugin& mSelf;
};
} // namespace GMLIB_LegacyRemoteCallApi
} // namespace GMLIB