02eead3672
back later
26 lines
618 B
Java
26 lines
618 B
Java
package com.pahimar.ee3.lib;
|
|
|
|
/**
|
|
* Equivalent-Exchange-3
|
|
*
|
|
* BlockIds
|
|
*
|
|
* @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 ALUDEL_BASE_DEFAULT = 2454;
|
|
public static int ALCHEMICAL_CHEST_DEFAULT = 2455;
|
|
public static int GLASS_BELL_DEFAULT = 2456;
|
|
|
|
/* Current block ids */
|
|
public static int CALCINATOR;
|
|
public static int ALUDEL_BASE;
|
|
public static int ALCHEMICAL_CHEST;
|
|
public static int GLASS_BELL;
|
|
|
|
}
|