Mekanism-tilera-Edition/common/mekanism/api/gas/ITubeConnection.java

19 lines
413 B
Java
Raw Normal View History

package mekanism.api.gas;
import net.minecraftforge.common.ForgeDirection;
/**
* Implement this if your block can connect to Pressurized Tubes.
* @author AidanBrady
*
*/
public interface ITubeConnection
{
2013-02-25 21:02:05 +01:00
/**
* Whether or not a tube can connect to a certain orientation.
* @param side - orientation to check
* @return if a tube can connect
*/
public boolean canTubeConnect(ForgeDirection side);
}