Module system that will hook into dynamic gui. Modules(addons) should be able to check for plugin hooks and should have an onEnable() and onDisable() method. Modules should load after the server starts and shuts down on dynamic gui onDisable().
addon.yml
name: MyAddon
main: "com.github.dynamicgui.MyAddon"
MyAddon.java
public class MyAddon extends Addon {
@Override
public void onEnable() {
}
}
Module system that will hook into dynamic gui. Modules(addons) should be able to check for plugin hooks and should have an onEnable() and onDisable() method. Modules should load after the server starts and shuts down on dynamic gui onDisable().
addon.yml
MyAddon.java