mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-30 13:38:46 +00:00
13 lines
312 B
C#
13 lines
312 B
C#
using UnityEngine;
|
|
|
|
namespace YooAsset
|
|
{
|
|
internal abstract class DownloadAssetBundleOperation : DefaultDownloadFileOperation
|
|
{
|
|
internal DownloadAssetBundleOperation(PackageBundle bundle, DownloadParam param) : base(bundle, param)
|
|
{
|
|
}
|
|
|
|
public AssetBundle Result;
|
|
}
|
|
} |