ActuallyAdditions/src/main/java/ellpeck/gemification/blocks/InitBlocks.java
2014-12-03 22:33:46 +01:00

22 lines
574 B
Java

package ellpeck.gemification.blocks;
import cpw.mods.fml.common.registry.GameRegistry;
import net.minecraft.block.Block;
public class InitBlocks{
public static Block oreGem;
public static Block blockCrucible;
public static void init(){
oreGem = new OreGem();
blockCrucible = new BlockCrucible();
GameRegistry.registerBlock(oreGem, ItemBlockOreGem.class, oreGem.getUnlocalizedName().substring(5));
GameRegistry.registerBlock(blockCrucible, ItemBlockCrucible.class, blockCrucible.getUnlocalizedName().substring(5));
}
}