Initial commit

This commit is contained in:
Caixukun1919810
2024-02-05 19:43:25 +08:00
committed by GitHub
Unverified
commit 9cbe76a260
16 changed files with 7783 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#include "Plugin.h"
#include "Global.h"
ll::Logger logger(PLUGIN_NAME);
namespace plugin {
Plugin::Plugin(ll::plugin::NativePlugin& self) : mSelf(self) {
// Code for loading the plugin goes here.
}
bool Plugin::enable() {
// Code for enabling the plugin goes here.
return true;
}
bool Plugin::disable() {
// Code for disabling the plugin goes here.
return true;
}
} // namespace plugin