package com.mrcrayfish.furniture.blocks;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.util.BlockRenderLayer;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
public class BlockOutdoorTable extends BlockTable
{
public BlockOutdoorTable(Material material, SoundType sound)
{
super(material, sound);
this.setHardness(1.0F);
}
@SideOnly(Side.CLIENT)
public BlockRenderLayer getBlockLayer()
{
return BlockRenderLayer.TRANSLUCENT;
}
}