26 lines
660 B
Java
26 lines
660 B
Java
package com.pahimar.ee3.lib;
|
|
|
|
/**
|
|
* BlockIds
|
|
*
|
|
* Library containing the default values for mod related Block ids
|
|
*
|
|
* @author pahimar
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
*
|
|
*/
|
|
public class BlockIds {
|
|
|
|
/* Default block ids */
|
|
public static int CALCINATOR_DEFAULT = 2451;
|
|
public static int RED_WATER_STILL_DEFAULT = 2453;
|
|
public static int ALUDEL_DEFAULT = 2454;
|
|
public static int ALCHEMICAL_CHEST_DEFAULT = 2455;
|
|
|
|
/* Current block ids */
|
|
public static int CALCINATOR;
|
|
public static int ALUDEL;
|
|
public static int ALCHEMICAL_CHEST;
|
|
public static int RED_WATER_STILL;
|
|
|
|
}
|