mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-14 19:40:47 +00:00
13 lines
322 B
C#
13 lines
322 B
C#
using UnityEngine;
|
|
|
|
namespace YooAsset
|
|
{
|
|
internal abstract class DownloadAssetBundleOperation : DefaultDownloadFileOperation
|
|
{
|
|
internal DownloadAssetBundleOperation(PackageBundle bundle, DownloadFileOptions options) : base(bundle, options)
|
|
{
|
|
}
|
|
|
|
public AssetBundle Result;
|
|
}
|
|
} |