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
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.util;
|
2015-03-29 15:29:05 +02:00
|
|
|
|
2016-01-08 15:33:19 +01:00
|
|
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
2015-03-29 15:29:05 +02:00
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
|
2015-11-29 13:17:45 +01:00
|
|
|
public class ModUtil{
|
2016-02-01 20:39:11 +01:00
|
|
|
|
2015-11-29 13:17:45 +01:00
|
|
|
public static final String VERSION = "@VERSION@"; //build.gradle
|
2015-03-29 15:29:05 +02:00
|
|
|
|
2016-01-08 15:33:19 +01:00
|
|
|
public static final String MOD_ID = ActuallyAdditionsAPI.MOD_ID;
|
2015-03-29 15:29:05 +02:00
|
|
|
public static final String NAME = "Actually Additions";
|
|
|
|
|
2016-05-13 23:19:30 +02:00
|
|
|
private static final String PROXY_BASE = "de.ellpeck.actuallyadditions.mod.proxy.";
|
|
|
|
public static final String PROXY_CLIENT = PROXY_BASE+"ClientProxy";
|
|
|
|
public static final String PROXY_SERVER = PROXY_BASE+"ServerProxy";
|
|
|
|
|
2016-05-05 10:01:15 +02:00
|
|
|
public static final Logger LOGGER = LogManager.getLogger(NAME);
|
2015-03-29 15:29:05 +02:00
|
|
|
}
|