6 major server modules (PdkFriendServer/GlobalSever/ServerCore/GameModule/GameNetModule) + game logic (GameFix/GameDAL/ServerData) + network layer (NetWorkMessage) + data layer (ObjectModel) + utilities (MrWu/Core/Config/CloudAPI/dll) + adapters (zyxAdapter/base) .NET 8.0 C# solution, 16 projects, 958 source files
27 lines
735 B
C#
27 lines
735 B
C#
namespace Server
|
|
{
|
|
public static class GlobalMsgId
|
|
{
|
|
private static uint CorSur = 1;
|
|
|
|
/// <summary>
|
|
/// 模块节点死亡
|
|
/// </summary>
|
|
public static readonly uint ModuleNodeDie = CorSur++;
|
|
|
|
/// <summary>
|
|
/// 模块节点崩溃
|
|
/// </summary>
|
|
public static readonly uint ModuleNodeCrash = CorSur++;
|
|
|
|
/// <summary>
|
|
/// 游戏名称读取成功
|
|
/// </summary>
|
|
public static readonly uint GameNameReadSuccess = CorSur++;
|
|
|
|
/// <summary>
|
|
/// 游戏更新通知器改变
|
|
/// </summary>
|
|
public static readonly uint GameUpdateNotifierChange = CorSur++;
|
|
}
|
|
} |