2013-12-27 23:59:59 +01:00
|
|
|
package appeng.block.solids;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
|
|
|
import net.minecraft.block.material.Material;
|
2014-04-04 06:12:35 +02:00
|
|
|
import appeng.block.AEDecorativeBlock;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
|
2014-04-04 06:12:35 +02:00
|
|
|
public class BlockQuartzChiseled extends AEDecorativeBlock
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
public BlockQuartzChiseled() {
|
|
|
|
super( BlockQuartzChiseled.class, Material.rock );
|
|
|
|
setfeature( EnumSet.of( AEFeature.DecorativeQuartzBlocks ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|