ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/util/ModUtil.java

27 lines
898 B
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("ModUtil.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-03-29 15:29:05 +02:00
package ellpeck.actuallyadditions.util;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
2015-11-03 23:27:24 +01:00
import java.util.Locale;
public class ModUtil {
public static final String VERSION = "mod_version"; // Will be replaced by gradle
2015-03-29 15:29:05 +02:00
public static final String MOD_ID = "ActuallyAdditions";
public static final String NAME = "Actually Additions";
2015-11-03 23:27:24 +01:00
public static final String MOD_ID_LOWER = MOD_ID.toLowerCase(Locale.ROOT);
2015-03-29 15:29:05 +02:00
2015-06-06 01:25:53 +02:00
public static final Logger LOGGER = LogManager.getLogger(MOD_ID);
2015-03-29 15:29:05 +02:00
}