2026-06-02 11:11:47 +08:00
|
|
|
namespace ZooMatch
|
2026-06-02 10:26:44 +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;
|
|
|
|
|
public static readonly uint open_wb = ++Cursor_BASE;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|