22 lines
545 B
C#
Raw Permalink Normal View History

2024-10-16 20:41:40 +08:00
namespace HotScripts.GameLauncher
{
public class HotLauncherEvent
{
/// <summary>
/// 初始化系统 [提示词]
/// </summary>
public static string InitSystem = "HotLauncherEvent_InitSystem";
/// <summary>
/// 初始化系统成功
/// </summary>
public static string InitSuccess = "HotLauncherEvent_InitSuccess";
/// <summary>
/// 进入游戏
/// </summary>
public static string GoGameMain = "HotLauncherEvent_GoGameMain";
}
}