001 package net.minecraft.src; 002 003 import java.util.Random; 004 005 public class BlockStone extends Block 006 { 007 public BlockStone(int par1, int par2) 008 { 009 super(par1, par2, Material.rock); 010 this.setCreativeTab(CreativeTabs.tabBlock); 011 } 012 013 /** 014 * Returns the ID of the items to drop on destruction. 015 */ 016 public int idDropped(int par1, Random par2Random, int par3) 017 { 018 return Block.cobblestone.blockID; 019 } 020 }