mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-21 16:00:32 +00:00
21 lines
408 B
C#
21 lines
408 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal interface IBundleServices
|
|
{
|
|
/// <summary>
|
|
/// 获取资源包信息
|
|
/// </summary>
|
|
BundleInfo GetBundleInfo(AssetInfo assetInfo);
|
|
|
|
/// <summary>
|
|
/// 获取依赖的资源包信息集合
|
|
/// </summary>
|
|
BundleInfo[] GetAllDependBundleInfos(AssetInfo assetPath);
|
|
|
|
/// <summary>
|
|
/// 服务接口是否有效
|
|
/// </summary>
|
|
bool IsServicesValid();
|
|
}
|
|
} |