mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 22:04:36 +01:00
21 lines
485 B
C#
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);
|
|
}
|
|
}
|