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
|
2016-01-03 16:05:51 +01:00
|
|
|
* http://ellpeck.de/actaddlicense/
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-01-03 16:05:51 +01:00
|
|
|
* © 2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2015-12-30 22:02:15 +01:00
|
|
|
package de.ellpeck.actuallyadditions.util;
|
2015-03-29 15:29:05 +02:00
|
|
|
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
|
2015-11-03 23:27:24 +01:00
|
|
|
import java.util.Locale;
|
|
|
|
|
2015-11-29 13:17:45 +01:00
|
|
|
public class ModUtil{
|
|
|
|
public static final String VERSION = "@VERSION@"; //build.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
|
|
|
}
|