blob: c971d433553b15c1bccfa50ffbc655f851885fcf [file] [log] [blame] [raw]
package universalelectricity.api.net;
import net.minecraftforge.common.ForgeDirection;
/**
* @author Calclavia
*
*/
public interface IConnectable
{
/**
* Can this TileEntity connect with another?
*
* @return Return true, if the connection is possible.
*/
@Deprecated
public boolean canConnect(ForgeDirection direction);
}