2025-02-28 16:11:01 +08:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace YooAsset
|
|
|
|
|
{
|
|
|
|
|
internal abstract class DownloadAssetBundleOperation : DefaultDownloadFileOperation
|
|
|
|
|
{
|
2025-05-13 10:40:30 +08:00
|
|
|
|
internal DownloadAssetBundleOperation(PackageBundle bundle, DownloadFileOptions options) : base(bundle, options)
|
2025-02-28 16:11:01 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AssetBundle Result;
|
|
|
|
|
}
|
|
|
|
|
}
|