16 lines
321 B
Java
16 lines
321 B
Java
|
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 {
|
||
|
|
||
|
public boolean canConduitConnect(ForgeDirection side);
|
||
|
|
||
|
}
|