mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 16:39:10 +01:00
26 lines
854 B
Java
26 lines
854 B
Java
/*
|
|
* 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://ellpeck.de/actaddlicense/
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2016 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.util;
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
import java.util.Locale;
|
|
|
|
public class ModUtil{
|
|
public static final String VERSION = "@VERSION@"; //build.gradle
|
|
|
|
public static final String MOD_ID = "ActuallyAdditions";
|
|
public static final String NAME = "Actually Additions";
|
|
public static final String MOD_ID_LOWER = MOD_ID.toLowerCase(Locale.ROOT);
|
|
|
|
public static final Logger LOGGER = LogManager.getLogger(MOD_ID);
|
|
}
|