ActuallyAdditions/src/main/java/ellpeck/someprettytechystuff/items/metalists/TheMiscItems.java
2015-03-21 16:15:42 +01:00

23 lines
535 B
Java

package ellpeck.someprettytechystuff.items.metalists;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.util.IIcon;
public enum TheMiscItems{
MASHED_FOOD("MashedFood"),
REFINED_IRON("RefinedIron"),
REFINED_REDSTONE("RefinedRedstone"),
COMPRESSED_IRON("CompressedIron"),
STEEL("Steel"),
DOUGH("Dough");
public final String name;
@SideOnly(Side.CLIENT)
public IIcon theIcon;
private TheMiscItems(String name){
this.name = name;
}
}