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

10 lines
247 B
Java
Raw Normal View History

2013-08-23 16:59:50 +02:00
package com.pahimar.ee3.emc;
public enum EmcType {
2013-09-07 04:47:12 +02:00
OMNI, CORPOREAL, KINETIC, TEMPORAL, ESSENTIA, AMORPHOUS, VOID;
2013-10-06 04:46:29 +02:00
public static final EmcType[] TYPES = EmcType.values();
public static final EmcType DEFAULT = EmcType.OMNI;
2013-08-23 16:59:50 +02:00
}