Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package packagename;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.block.material.Material;
  5. import net.minecraft.creativetab.CreativeTabs;
  6.  
  7. public class BlockName extends Block {
  8. public String key;
  9.  
  10. public BlockName(String key) {
  11. super(Material.rock);
  12. this.key = key;
  13. setUnlocalizedName(key);
  14. setCreativeTab(CreativeTabs.tabBlock);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement