16 lines
438 B
Java
16 lines
438 B
Java
package net.minecraft.block;
|
|
|
|
import net.minecraft.block.material.MapColor;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
public class BlockBone extends BlockRotatedPillar
|
|
{
|
|
public BlockBone()
|
|
{
|
|
super(Material.ROCK, MapColor.SAND);
|
|
this.setCreativeTab(CreativeTabs.BUILDING_BLOCKS);
|
|
this.setHardness(2.0F);
|
|
this.setSoundType(SoundType.STONE);
|
|
}
|
|
} |