Wither Config allows you to adjust the Wither's stats and behavior for a tailored boss experience.
at 1.0 18 lines 594 B view raw
1package dev.redstudio.witherconfig.utils; 2 3import dev.redstudio.witherconfig.Tags; 4import org.apache.logging.log4j.LogManager; 5import org.apache.logging.log4j.Logger; 6 7/** 8 * This class defines constants for Wither Config. 9 * <p> 10 * They are automatically updated by RFG on compile time, except for the name as Gradle would remove spaces. 11 */ 12public class ModReference { 13 14 public static final String ID = Tags.ID; 15 public static final String NAME = "Wither Config"; 16 public static final String VERSION = Tags.VERSION; 17 public static final Logger LOG = LogManager.getLogger(NAME); 18}