mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2025-06-27 03:46:41 +00:00
Upgrades
This commit is contained in:
23
Corvo/src/main/java/me/totalfreedom/corvo/Corvo.java
Normal file
23
Corvo/src/main/java/me/totalfreedom/corvo/Corvo.java
Normal file
@ -0,0 +1,23 @@
|
||||
package me.totalfreedom.corvo;
|
||||
|
||||
import me.totalfreedom.base.CommonsBase;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
public class Corvo extends JavaPlugin
|
||||
{
|
||||
@Override
|
||||
public void onEnable() {
|
||||
CommonsBase.getInstance()
|
||||
.getRegistrations()
|
||||
.getModuleRegistry()
|
||||
.addModule(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
CommonsBase.getInstance()
|
||||
.getRegistrations()
|
||||
.getModuleRegistry()
|
||||
.removeModule(this);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user