blob: a349d7f86ed0f183f7e7ce8aeb978c2f6871d750 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package gtPlusPlus.xmod.ic2;
import ic2.core.init.InternalName;
import net.minecraftforge.common.util.EnumHelper;
public class CustomInternalName {
public static InternalName aHazmatHelmetEx;
public static InternalName aHazmatChestEx;
public static InternalName aHazmatLegsEx;
public static InternalName aHazmatBootsEx;
public static void init() {
aHazmatHelmetEx = EnumHelper.addEnum(InternalName.class, "itemArmorHazmatHelmetEx", new Class[] {}, new Object[] {});
aHazmatChestEx = EnumHelper.addEnum(InternalName.class, "itemArmorHazmatChestplateEx", new Class[] {}, new Object[] {});
aHazmatLegsEx = EnumHelper.addEnum(InternalName.class, "itemArmorHazmatLeggingsEx", new Class[] {}, new Object[] {});
aHazmatBootsEx = EnumHelper.addEnum(InternalName.class, "itemArmorRubBootsEx", new Class[] {}, new Object[] {});
}
}
|