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

21 lines
485 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Chapter;
public class PacketChapterBwWorldGetDataRsp : BasePacket
{
public PacketChapterBwWorldGetDataRsp(uint ChapterId) : base(CmdIds.ChapterBwWorldGetDataRsp)
{
var proto = new ChapterBwWorldGetDataRsp
{
ChapterBwWorld = new ChapterBwWorld
{
ChapterId = ChapterId
}
};
SetData(proto);
}
}