mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
23 lines
437 B
C#
23 lines
437 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal sealed class CompletedDownloader : DownloaderBase
|
|
{
|
|
public CompletedDownloader(BundleInfo bundleInfo) : base(bundleInfo, 0, 0)
|
|
{
|
|
_downloadProgress = 1f;
|
|
_downloadedBytes = (ulong)bundleInfo.Bundle.FileSize;
|
|
_status = EStatus.Succeed;
|
|
}
|
|
|
|
public override void SendRequest(params object[] param)
|
|
{
|
|
}
|
|
public override void Update()
|
|
{
|
|
}
|
|
public override void Abort()
|
|
{
|
|
}
|
|
}
|
|
} |