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 BlockButtonWood extends BlockButton
008{
009    protected BlockButtonWood(int par1)
010    {
011        super(par1, true);
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 getBlockTextureFromSideAndMetadata(int par1, int par2)
020    {
021        return Block.planks.getBlockTextureFromSide(1);
022    }
023}