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