001package net.minecraft.block;
002
003import cpw.mods.fml.relauncher.Side;
004import cpw.mods.fml.relauncher.SideOnly;
005import net.minecraft.util.Icon;
006
007public class BlockButtonStone extends BlockButton
008{
009    protected BlockButtonStone(int par1)
010    {
011        super(par1, false);
012    }
013
014    @SideOnly(Side.CLIENT)
015
016    /**
017     * From the specified side and block metadata retrieves the blocks texture. Args: side, metadata
018     */
019    public Icon getIcon(int par1, int par2)
020    {
021        return Block.stone.getBlockTextureFromSide(1);
022    }
023}