Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.TheGoldCrayon.Daemonology.blocks;
- import net.minecraft.block.Block;
- import net.minecraft.block.material.Material;
- import net.minecraftforge.fml.common.registry.GameRegistry;
- public class Blocks extends Block{
- public Blocks(Material materialIn) {
- super(materialIn);
- }
- public static Block modBlockTileEntity;
- public static final void createBlocks() {
- GameRegistry.registerBlock(modBlockTileEntity = new ModBlockTileEntity("block_sulfuric_furnace"), "block_sulfuric_furnace");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment