/** * Register new sub-type, may replace existing sub-types. Should be used only if you know what are * you doing, it will not create fully usable material. * * @param element sub-type to register */ public static void register(final IronOreMat element) { byID.put((byte) element.getType(), element); byName.put(element.name(), element); }
@Override public IronOreMat[] types() { return IronOreMat.ironOreTypes(); }
static { IronOreMat.register(IRON_ORE); }