ActuallyAdditions/src/main/java/ellpeck/someprettytechystuff/util/GemType.java
2015-01-05 22:14:04 +01:00

14 lines
311 B
Java

package ellpeck.someprettytechystuff.util;
public class GemType{
public final int ID;
public final String name;
public GemType(int ID, String name, boolean shouldAddToList){
this.ID = ID;
this.name = "fluid" + name;
if(shouldAddToList) Util.gemList.add(ID, this);
}
}