equivalent-exchange-3/common/com/pahimar/ee3/emc/EmcDefaultValues.java

24 lines
1 KiB
Java
Raw Normal View History

2013-08-23 16:59:50 +02:00
package com.pahimar.ee3.emc;
import java.util.HashMap;
import com.pahimar.ee3.item.CustomWrappedStack;
public class EmcDefaultValues {
2013-09-09 21:57:07 +02:00
// Unit components for the various EmcTypes
public static final EmcComponent OMNI_UNIT_COMPONENT = new EmcComponent(EmcType.OMNI);
public static final EmcComponent CORPOREAL_UNIT_COMPONENT = new EmcComponent(EmcType.CORPOREAL);
public static final EmcComponent KINETIC_UNIT_COMPONENT = new EmcComponent(EmcType.KINETIC);
public static final EmcComponent TEMPORAL_UNIT_COMPONENT = new EmcComponent(EmcType.TEMPORAL);
public static final EmcComponent ESSENTIA_UNIT_COMPONENT = new EmcComponent(EmcType.ESSENTIA);
public static final EmcComponent AMORPHOUS_UNIT_COMPONENT = new EmcComponent(EmcType.AMORPHOUS);
public static final EmcComponent VOID_UNIT_COMPONENT = new EmcComponent(EmcType.VOID);
2013-09-09 20:14:20 +02:00
private static HashMap<CustomWrappedStack, EmcValue> defaultEmcValues = new HashMap<CustomWrappedStack, EmcValue>();
2013-08-23 16:59:50 +02:00
public static void init() {
}
}