ec98b19ffb
(Items done!)
15 lines
321 B
Java
15 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);
|
|
|
|
}
|