Venom1987

block

Mar 29th, 2015
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. package com.github.venom1987.TutMod1.init;
  2.  
  3. import com.github.venom1987.TutMod1.blocks.BlockTutorialOre;
  4. import com.github.venom1987.TutMod1.help.RegisterHelper;
  5.  
  6.  
  7.  
  8. import net.minecraft.block.Block;
  9.  
  10. public class ModBlocks
  11. {
  12.  
  13. public static Block tutorialOre = new BlockTutorialOre();
  14.  
  15.  
  16. public static void init()
  17. {
  18. RegisterHelper.registerBlock(tutorialOre);
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment