mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
18 lines
373 B
C#
18 lines
373 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Pjms;
|
|
|
|
public class PacketPjmsGetCurWorldRsp : BasePacket
|
|
{
|
|
public PacketPjmsGetCurWorldRsp() : base(CmdIds.PjmsGetCurWorldRsp)
|
|
{
|
|
var proto = new PjmsGetCurWorldRsp
|
|
{
|
|
World = new() { WorldId = 400 }
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|