You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
559 B
Java
25 lines
559 B
Java
package net.minecraft.block;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.init.Blocks;
|
|
import net.minecraft.util.IIcon;
|
|
|
|
public class BlockButtonWood extends BlockButton
|
|
{
|
|
private static final String __OBFID = "CL_00000336";
|
|
|
|
protected BlockButtonWood()
|
|
{
|
|
super(true);
|
|
}
|
|
|
|
/**
|
|
* Gets the block's texture. Args: side, meta
|
|
*/
|
|
@SideOnly(Side.CLIENT)
|
|
public IIcon getIcon(int side, int meta)
|
|
{
|
|
return Blocks.planks.getBlockTextureFromSide(1);
|
|
}
|
|
} |