using System.Collections; using System.Collections.Generic; namespace YooAsset { internal interface IBundleQuery { /// /// 获取主资源包信息 /// BundleInfo GetMainBundleInfo(AssetInfo assetInfo); /// /// 获取依赖的资源包信息集合 /// List GetDependBundleInfos(AssetInfo assetPath); /// /// 获取主资源包名称 /// string GetMainBundleName(int bundleID); } }