2021-12-21 04:57:29 +00:00
|
|
|
package de.jatitv.commandguiv2;
|
|
|
|
|
|
|
|
public class Util {
|
2022-01-08 06:47:49 +00:00
|
|
|
private static double requiredT2CodeLibVersion = 10.1;
|
2022-01-01 02:40:54 +00:00
|
|
|
private static String Prefix = "§8[§4C§9GUI§8]";
|
|
|
|
private static Integer SpigotID = 90671;
|
|
|
|
private static Integer BstatsID = 10840;
|
|
|
|
private static String Spigot = "https://www.spigotmc.org/resources/" + SpigotID;
|
|
|
|
private static String Discord = "http://dc.t2code.net";
|
|
|
|
|
|
|
|
public static double getRequiredT2CodeLibVersion() {
|
|
|
|
return requiredT2CodeLibVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPrefix() {
|
|
|
|
return Prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Integer getSpigotID() {
|
|
|
|
return SpigotID;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Integer getBstatsID() {
|
|
|
|
return BstatsID;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getSpigot() {
|
|
|
|
return Spigot;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getDiscord() {
|
|
|
|
return Discord;
|
|
|
|
}
|
2021-12-21 04:57:29 +00:00
|
|
|
}
|