TheGoldCrayon

Blocks

Mar 26th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package com.TheGoldCrayon.Daemonology.blocks;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.block.material.Material;
  5. import net.minecraftforge.fml.common.registry.GameRegistry;
  6.  
  7. public class Blocks extends Block{
  8.  
  9. public Blocks(Material materialIn) {
  10. super(materialIn);
  11. }
  12.  
  13. public static Block modBlockTileEntity;
  14.  
  15. public static final void createBlocks() {
  16. GameRegistry.registerBlock(modBlockTileEntity = new ModBlockTileEntity("block_sulfuric_furnace"), "block_sulfuric_furnace");
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment