blob: d0ad117b394e20e7fe986344f31c4dcc11da8eda [file] [log] [blame] [raw]
package cofh.api.item;
import net.minecraftforge.common.util.ForgeDirection;
/**
* Implement this interface on TileEntities which should connect to item transportation blocks.
*
* Note that {@link IInventoryHandler} is an extension of this.
*
* @author King Lemming
*
*/
public interface IInventoryConnection {
/**
* Returns TRUE if the TileEntity can connect on a given side.
*/
boolean canConnectInventory(ForgeDirection from);
}