namespace YooAsset { public interface IRemoteServices { /// /// 获取主资源站的资源地址 /// /// 请求的文件名称 string GetRemoteMainURL(string fileName); /// /// 获取备用资源站的资源地址 /// /// 请求的文件名称 string GetRemoteFallbackURL(string fileName); } }