StatesOfMatterLib
but please call me SomLib :D
Did you ever want to make a gaz in your mod? We got you!
public class ModMaterials {
public static SparseMaterial gaz1 = registerSparseMaterial("test_gaz_1", new TestGaz1());
public static void register(){
}
private static SparseMaterial registerSparseMaterial(String name, SparseMaterial material) {
return Registry.register(SparseMaterialRegistry.MATERIAL_TYPES, TestMod.id(name), material);
}
}
⊹ ࣪ ˖ Register gazes just as easy as registering blocks! ⊹ ࣪ ˖


