package dev.redstudio.witherconfig.utils; import dev.redstudio.witherconfig.Tags; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; /** * This class defines constants for Wither Config. *

* They are automatically updated by RFG on compile time, except for the name as Gradle would remove spaces. */ public class ModReference { public static final String ID = Tags.ID; public static final String NAME = "Wither Config"; public static final String VERSION = Tags.VERSION; public static final Logger LOG = LogManager.getLogger(NAME); }