Files
hjha-server/GlobalSever/MQ/DeliveryResult.cs
xiaoou e9616125ce feat: initial commit - HJHA game server full source
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
2026-07-07 12:02:15 +08:00

24 lines
468 B
C#

/*
* 由SharpDevelop创建。
* 用户: Administrator
* 日期: 2018-12-22
* 时间: 13:56
*
* 要改变这种模板请点击 工具|选项|代码编写|编辑标准头文件
*/
using System;
namespace Server
{
/// <summary>
/// 投递结果
/// </summary>
public class DeliveryResult
{
/// <summary>
/// 0表示没有找到这个模块 1表示投递成功 2表示投递失败
/// </summary>
public int style;
}
}