You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
458 B
Java

package net.brokenmoon.afloydtubemod.block;
import net.minecraft.src.BlockContainer;
import net.minecraft.src.Material;
import net.minecraft.src.TileEntity;
import net.brokenmoon.afloydtubemod.tileEntity.TileEntityTube;
public class BlockTube extends BlockContainer {
public BlockTube(int i, Material material) {
super(i, material);
}
@Override
protected TileEntity getBlockEntity(){
return new TileEntityTube();
}
}