Plugins
LeafMCBE Plugin Guidance.
import { Plugin } from "../../src/plugins/BasePlugin.js";
class Example extends Plugin {
constructor() {
super({
name: "Example",
version: [1, 0, 0],
srvVersion: [1, 19, 50],
});
}
onEnable() {
this.api.getLogger().info("I am enabled!");
}
export default Example;FAQ:
1. Where this.api coming from?
this.api coming from?Last updated