2013-12-27 23:59:59 +01:00
|
|
|
package appeng.block.networking;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import appeng.block.AEBaseBlock;
|
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
import appeng.tile.networking.TileEnergyAcceptor;
|
|
|
|
|
|
|
|
public class BlockEnergyAcceptor extends AEBaseBlock
|
|
|
|
{
|
|
|
|
|
|
|
|
public BlockEnergyAcceptor() {
|
|
|
|
super( BlockEnergyAcceptor.class, Material.iron );
|
2014-09-20 23:24:29 +02:00
|
|
|
setFeature( EnumSet.of( AEFeature.Core ) );
|
2014-09-20 23:23:39 +02:00
|
|
|
setTileEntity( TileEnergyAcceptor.class );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|