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

27 lines
829 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
*
* <EFBFBD> 2015 Ellpeck
*/
2015-03-29 15:29:05 +02:00
package ellpeck.actuallyadditions.util;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class ModUtil{
2015-10-31 14:45:35 +01:00
public static final String VERSION = "1.7.10-r2";
2015-03-29 15:29:05 +02:00
public static final String MOD_ID = "ActuallyAdditions";
public static final String NAME = "Actually Additions";
public static final String MOD_ID_LOWER = MOD_ID.toLowerCase();
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
}