mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-20 15:20:07 +00:00
21 lines
434 B
C#
21 lines
434 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal interface IBundleServices
|
|
{
|
|
/// <summary>
|
|
/// 获取AssetBundle的信息
|
|
/// </summary>
|
|
BundleInfo GetBundleInfo(string bundleName);
|
|
|
|
/// <summary>
|
|
/// 获取资源所属的资源包名称
|
|
/// </summary>
|
|
string GetBundleName(string assetPath);
|
|
|
|
/// <summary>
|
|
/// 获取资源依赖的所有AssetBundle列表
|
|
/// </summary>
|
|
string[] GetAllDependencies(string assetPath);
|
|
}
|
|
} |