2013-02-22 04:03:54 +01:00
|
|
|
package mekanism.api;
|
|
|
|
|
2013-04-13 02:30:00 +02:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
|
2013-02-22 04:03:54 +01:00
|
|
|
public interface IPressurizedTube
|
|
|
|
{
|
2013-02-25 21:02:05 +01:00
|
|
|
/**
|
|
|
|
* Whether or not this tube can transfer gas.
|
|
|
|
* @return if the tube can transfer gas
|
|
|
|
*/
|
2013-04-13 02:30:00 +02:00
|
|
|
public boolean canTransferGas(TileEntity fromTile);
|
2013-02-22 04:03:54 +01:00
|
|
|
}
|