BiomesOPlenty/src/minecraft/biomesoplenty/blocks/BlockHardSand.java

24 lines
573 B
Java
Raw Normal View History

package biomesoplenty.blocks;
import biomesoplenty.mod_BiomesOPlenty;
2013-03-28 19:03:53 +00:00
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
2013-03-30 17:14:03 +00:00
import net.minecraft.client.renderer.texture.IconRegister;
2013-03-28 19:03:53 +00:00
@Deprecated
2013-03-28 19:03:53 +00:00
public class BlockHardSand extends Block
{
2013-03-30 17:14:03 +00:00
public BlockHardSand(int par1)
2013-03-28 19:03:53 +00:00
{
2013-03-30 17:14:03 +00:00
super(par1, Material.sand);
2013-03-28 19:03:53 +00:00
this.setCreativeTab(mod_BiomesOPlenty.tabBiomesOPlenty);
}
2013-03-30 17:14:03 +00:00
@Override
public void registerIcons(IconRegister par1IconRegister)
{
this.blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:hardsand");
}
2013-03-28 19:03:53 +00:00
}