1
mirror of https://github.com/CarmJos/MineSQL.git synced 2026-06-04 16:43:03 +08:00

添加README

This commit is contained in:
2022-02-10 02:44:29 +08:00
parent c46d00d5c4
commit b5a3e268bc
2 changed files with 27 additions and 2 deletions
@@ -2,13 +2,12 @@ package cc.carm.plugin.easysql;
import cc.carm.lib.easyplugin.EasyPlugin;
import cc.carm.plugin.easysql.api.DBConfiguration;
import org.bukkit.event.Listener;
import org.jetbrains.annotations.NotNull;
import java.util.HashMap;
import java.util.Map;
public class EasySQLBukkit extends EasyPlugin implements EasySQLPluginPlatform, Listener {
public class EasySQLBukkit extends EasyPlugin implements EasySQLPluginPlatform {
@Override
protected void load() {
@@ -25,4 +24,18 @@ public class EasySQLBukkit extends EasyPlugin implements EasySQLPluginPlatform,
return new HashMap<>();
}
@Override
public void outputInfo() {
log("\n" +
"&5&l ______ _____ ____ _ &d&l_____ _ _ \n" +
"&5&l| ____| / ____|/ __ \\| | &d&l| __ \\| | (_) \n" +
"&5&l| |__ __ _ ___ _ _| (___ | | | | | &d&l| |__) | |_ _ __ _ _ _ __ \n" +
"&5&l| __| / _` / __| | | |\\___ \\| | | | | &d&l| ___/| | | | |/ _` | | '_ \\ \n" +
"&5&l| |___| (_| \\__ \\ |_| |____) | |__| | |____ &d&l| | | | |_| | (_| | | | | |\n" +
"&5&l|______\\__,_|___/\\__, |_____/ \\___\\_\\______| &d&l|_| |_|\\__,_|\\__, |_|_| |_|\n" +
"&5&l __/ | &d&l __/ | \n" +
"&5&l |___/ &d&l|___/ "
);
}
}