eddef226e0
it.
23 lines
576 B
Java
23 lines
576 B
Java
package biomesoplenty.blocks;
|
|
|
|
import biomesoplenty.BiomesOPlenty;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.client.renderer.texture.IconRegister;
|
|
|
|
@Deprecated
|
|
public class BlockRedRockCobble extends Block
|
|
{
|
|
public BlockRedRockCobble(int par1)
|
|
{
|
|
super(par1, Material.rock);
|
|
this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty);
|
|
}
|
|
|
|
@Override
|
|
public void registerIcons(IconRegister par1IconRegister)
|
|
{
|
|
this.blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:redcobble");
|
|
}
|
|
}
|