NBC修改

This commit is contained in:
bob
2025-07-03 14:16:18 +08:00
parent 4febfadd56
commit 800e96aac7
2083 changed files with 60081 additions and 2942 deletions

View File

@@ -1,40 +0,0 @@
using System.IO;
namespace NBC.Asset
{
public class UnpackVersionTask : NTask
{
private readonly bool _download;
private readonly string _savePath;
private UnpackFileTask _unpackFileTask;
public UnpackVersionTask(bool download = false)
{
_savePath = Const.GetCachePath(Const.VersionFileName);
_download = download;
}
protected override void OnStart()
{
if (File.Exists(_savePath))
{
Finish();
}
else
{
_unpackFileTask = new UnpackFileTask(Const.VersionFileName, _download);
_unpackFileTask.Run(TaskRunner.Def);
}
}
protected override NTaskStatus OnProcess()
{
if (_unpackFileTask != null)
{
return _unpackFileTask.Status;
}
return NTaskStatus.Success;
}
}
}