2026-04-22 11:13:16 +08:00
|
|
|
namespace LoveLegend
|
2026-04-22 09:52:55 +08:00
|
|
|
{
|
|
|
|
|
public static partial class CtrlMsg
|
|
|
|
|
{
|
|
|
|
|
public const string NAME = "CtrlMsg";
|
|
|
|
|
public const uint BASE = 0;
|
|
|
|
|
private static uint Cursor_BASE = BASE;
|
|
|
|
|
public static readonly uint Login_Succeed = ++Cursor_BASE;
|
|
|
|
|
public static readonly uint Game_StartReady = ++Cursor_BASE;
|
|
|
|
|
public static readonly uint Game_Start = ++Cursor_BASE;
|
|
|
|
|
}
|
|
|
|
|
}
|