mirror of https://github.com/tuyoogame/YooAsset
20 lines
353 B
C#
20 lines
353 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal sealed class TempDownloader : DownloaderBase
|
|
{
|
|
public TempDownloader(BundleInfo bundleInfo) : base(bundleInfo)
|
|
{
|
|
_downloadProgress = 1f;
|
|
_downloadedBytes = (ulong)bundleInfo.Bundle.FileSize;
|
|
_steps = ESteps.Succeed;
|
|
}
|
|
|
|
public override void Update()
|
|
{
|
|
}
|
|
public override void Abort()
|
|
{
|
|
}
|
|
}
|
|
} |