ActuallyAdditions/src/main/java/ellpeck/someprettytechystuff/util/GemType.java

14 lines
311 B
Java
Raw Normal View History

2015-01-05 22:14:01 +01:00
package ellpeck.someprettytechystuff.util;
2015-01-05 22:14:01 +01:00
public class GemType{
2014-12-20 21:34:07 +01:00
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);
}
}