26 lines
585 B
Java
26 lines
585 B
Java
|
package cc.fascinated;
|
||
|
|
||
|
import cc.fascinated.command.CommandManager;
|
||
|
import cc.fascinated.worldsize.WorldSizeManager;
|
||
|
import cc.fascinated.worldsize.impl.WorldSizeCommand;
|
||
|
import org.bukkit.plugin.java.JavaPlugin;
|
||
|
|
||
|
public class Aetheria extends JavaPlugin {
|
||
|
|
||
|
/**
|
||
|
* The instance of the plugin.
|
||
|
*/
|
||
|
public static Aetheria INSTANCE;
|
||
|
|
||
|
public static final String PREFIX = "§6§lAetheria §7» §f";
|
||
|
|
||
|
public Aetheria() {
|
||
|
INSTANCE = this;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onEnable() {
|
||
|
new CommandManager();
|
||
|
new WorldSizeManager();
|
||
|
}
|
||
|
}
|