Update Samples

This commit is contained in:
hevinci
2022-07-18 14:56:12 +08:00
parent e340af90ed
commit 1fdeeb781f
357 changed files with 37151 additions and 0 deletions

View File

@@ -0,0 +1,26 @@

/// <summary>
/// 用户层反馈的操作方式
/// </summary>
public enum EPatchOperation
{
/// <summary>
/// 开始下载网络文件
/// </summary>
BeginDownloadWebFiles,
/// <summary>
/// 尝试再次更新静态版本
/// </summary>
TryUpdateStaticVersion,
/// <summary>
/// 尝试再次更新补丁清单
/// </summary>
TryUpdatePatchManifest,
/// <summary>
/// 尝试再次下载网络文件
/// </summary>
TryDownloadWebFiles,
}