TheInitialProject/Assets/CaoCao/Scripts/Editor/XAsset/Build/Pipeline/IAssetBundleManifest.cs
2024-10-23 16:59:02 +08:00

9 lines
235 B
C#

namespace CaoCao.Editor
{
public interface IAssetBundleManifest
{
string[] GetAllAssetBundles();
string[] GetAllDependencies(string assetBundle);
string GetAssetBundleHash(string assetBundle);
}
}