Update samples

This commit is contained in:
hevinci
2022-07-18 14:59:15 +08:00
parent df5f0b9c13
commit 95e6921a4e
357 changed files with 0 additions and 8 deletions

View File

@@ -0,0 +1,31 @@

/// <summary>
/// 补丁系统更新状态
/// </summary>
public enum EPatchStates
{
/// <summary>
/// 更新静态的资源版本
/// </summary>
UpdateStaticVersion,
/// <summary>
/// 更新补丁清单
/// </summary>
UpdateManifest,
/// <summary>
/// 创建下载器
/// </summary>
CreateDownloader,
/// <summary>
/// 下载远端文件
/// </summary>
DownloadWebFiles,
/// <summary>
/// 补丁流程完毕
/// </summary>
PatchDone,
}