2025-09-02 19:21:49 +08:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2025-01-09 11:31:04 +08:00
|
|
|
|
namespace YooAsset
|
|
|
|
|
{
|
|
|
|
|
internal interface IBundleQuery
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取主资源包信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
BundleInfo GetMainBundleInfo(AssetInfo assetInfo);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取依赖的资源包信息集合
|
|
|
|
|
/// </summary>
|
2025-09-02 19:21:49 +08:00
|
|
|
|
List<BundleInfo> GetDependBundleInfos(AssetInfo assetPath);
|
2025-01-09 11:31:04 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取主资源包名称
|
|
|
|
|
/// </summary>
|
2025-02-28 16:11:01 +08:00
|
|
|
|
string GetMainBundleName(int bundleID);
|
2025-01-09 11:31:04 +08:00
|
|
|
|
}
|
|
|
|
|
}
|