2014-01-20 17:41:37 +01:00
|
|
|
package appeng.debug;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
|
|
|
import net.minecraft.block.material.Material;
|
2014-02-22 23:14:43 +01:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.block.AEBaseBlock;
|
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
|
|
|
|
public class BlockItemGen extends AEBaseBlock
|
|
|
|
{
|
|
|
|
|
|
|
|
public BlockItemGen() {
|
|
|
|
super( BlockItemGen.class, Material.iron );
|
|
|
|
setfeature( EnumSet.of( AEFeature.Debug, AEFeature.Creative ) );
|
|
|
|
setTileEntiy( TileItemGen.class );
|
|
|
|
}
|
|
|
|
|
2014-02-22 23:14:43 +01:00
|
|
|
@Override
|
|
|
|
public void registerBlockIcons(IIconRegister iconRegistry)
|
|
|
|
{
|
2014-02-23 21:06:07 +01:00
|
|
|
registerNoIcons();
|
2014-02-22 23:14:43 +01:00
|
|
|
}
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
}
|