2024-03-20 13:42:42 +00:00
|
|
|
package cc.fascinated;
|
|
|
|
|
|
|
|
import cc.fascinated.command.CommandManager;
|
2024-03-20 15:53:40 +00:00
|
|
|
import cc.fascinated.playercolors.ColorManager;
|
2024-03-20 13:42:42 +00:00
|
|
|
import cc.fascinated.worldsize.WorldSizeManager;
|
|
|
|
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() {
|
2024-03-20 17:50:17 +00:00
|
|
|
saveDefaultConfig();
|
|
|
|
|
2024-03-20 13:42:42 +00:00
|
|
|
new CommandManager();
|
|
|
|
new WorldSizeManager();
|
2024-03-20 15:53:40 +00:00
|
|
|
new ColorManager();
|
2024-03-20 13:42:42 +00:00
|
|
|
}
|
|
|
|
}
|