2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ModUtil.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 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;
|
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public final 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-06-01 00:39:35 +02:00
|
|
|
public static final Logger LOGGER = LogManager.getLogger(NAME);
|
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";
|
2015-03-29 15:29:05 +02:00
|
|
|
}
|