2013-11-15 03:58:32 +01:00
|
|
|
package cofh.api.transport;
|
|
|
|
|
|
|
|
import net.minecraftforge.common.ForgeDirection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implement this interface to explicitly control sided Item Conduit connections for a Tile Entity.
|
|
|
|
*
|
|
|
|
* @author Zeldo Kavira
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public interface IItemConduitConnection {
|
|
|
|
|
2013-11-30 07:02:44 +01:00
|
|
|
public boolean canConduitConnect(ForgeDirection from);
|
2013-11-15 03:58:32 +01:00
|
|
|
|
|
|
|
}
|