base mod created
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user