2026-06-02 11:11:47 +08:00
|
|
|
namespace ZooMatch
|
2026-06-02 10:26:44 +08:00
|
|
|
{
|
|
|
|
|
public partial class NetworkMsg
|
|
|
|
|
{
|
|
|
|
|
private static uint MsgRootLogic = 100000;
|
|
|
|
|
public static uint GetConfig = ++MsgRootLogic;
|
|
|
|
|
public static uint Login = ++MsgRootLogic;
|
|
|
|
|
public static uint SavePlayData = ++MsgRootLogic;
|
|
|
|
|
public static uint GetPlayData = ++MsgRootLogic;
|
|
|
|
|
public static uint NotNetwork = ++MsgRootLogic;
|
|
|
|
|
}
|
|
|
|
|
}
|