add recipe for wireless transmitter + add basic destructor block
This commit is contained in:
20
src/main/java/storagecraft/block/BlockDestructor.java
Normal file
20
src/main/java/storagecraft/block/BlockDestructor.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package storagecraft.block;
|
||||
|
||||
import net.minecraft.block.ITileEntityProvider;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.world.World;
|
||||
import storagecraft.tile.TileDestructor;
|
||||
|
||||
public class BlockDestructor extends BlockBase implements ITileEntityProvider
|
||||
{
|
||||
public BlockDestructor()
|
||||
{
|
||||
super("destructor");
|
||||
}
|
||||
|
||||
@Override
|
||||
public TileEntity createNewTileEntity(World world, int meta)
|
||||
{
|
||||
return new TileDestructor();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user