refactored config to it's own class

This commit is contained in:
2024-11-28 10:26:03 +01:00
parent 0fe5ce24a8
commit 7e759aace3
4 changed files with 119 additions and 37 deletions

View File

@@ -0,0 +1,9 @@
package de.steev.bm.utils;
import org.bukkit.ChatColor;
public class Constants {
public static final String prefix = ChatColor.GRAY + "[" + ChatColor.AQUA + "BetterMinecraft" + ChatColor.GRAY + "]";
public static final String playerDataFilename = "playerdata.yml";
public static final String Version = "1.2.2";
}