Advertisement
niel_irc

Untitled

Jun 11th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. import net.minecraft.block.Block;
  2. import net.minecraft.client.renderer.texture.IconRegister;
  3. import net.minecraft.creativetab.CreativeTabs;
  4.  
  5. public class BlockMatrix extends Block {
  6.  
  7.  
  8. public BlockMatrix(int id) {
  9. super(id, null);
  10. this.setCreativeTab(CreativeTabs.tabBlock);
  11.  
  12. }
  13. @Override
  14. public void registerIcons(IconRegister par1IconRegister)
  15. {
  16. this.blockIcon = par1IconRegister.registerIcon("Pasta:CompressedCoal");
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement