Files
KianaBH3/GameServer/Server/Packet/Send/Chapter/PacketChapterKnightRichManGetDataRsp.cs
2025-06-14 11:15:32 +08:00

20 lines
580 B
C#

using Azure.Core;
using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Chapter;
public class PacketChapterKnightRichManGetDataRsp : BasePacket
{
public PacketChapterKnightRichManGetDataRsp(uint RichManId) : base(CmdIds.ChapterKnightRichManGetDataRsp)
{
var proto = new ChapterKnightRichManGetDataRsp
{
RichManId = RichManId,
Retcode = ChapterKnightRichManGetDataRsp.Types.Retcode.NotOpen, // set to NotOpen to prevent null reference error pop up
};
SetData(proto);
}
}