blob: 584bda1d735f3658daf3e7099f273424f9b8df7f [file] [log] [blame] [raw]
package com.legacy.aether.blocks.dungeon;
import net.minecraft.block.Block;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
public class BlockPillar extends Block
{
public BlockPillar()
{
super(Material.ROCK);
this.setSoundType(SoundType.METAL);
this.setHardness(0.5F);
}
}