JisolGame/JNFrame2/Assets/HotMain/HotMainEvent.cs

17 lines
478 B
C#
Raw Permalink Normal View History

2024-10-16 02:48:23 +08:00
namespace HotMain
{
public class HotMainEvent
{
2024-10-16 20:41:40 +08:00
2024-10-16 02:48:23 +08:00
/// <summary>
/// 开始下载资源
/// </summary>
public static string StartDownloader = "HotMainEvent_StartDownloader";
2024-10-16 20:41:40 +08:00
2024-10-16 02:48:23 +08:00
/// <summary>
/// 下载资源中进度更新 totalCount, currentCount, totalBytes, currentBytes
/// </summary>
public static string DownloaderProgressUpdate = "HotMainEvent_DownloaderProgressUpdate";
2024-10-16 20:41:40 +08:00
2024-10-16 02:48:23 +08:00
}
}