Files
KianaBH3/GameServer/Server/Packet/Send/Pjms/PacketPjmsSetWorldTimeRsp.cs
2025-06-29 16:51:27 +08:00

17 lines
380 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Pjms;
public class PacketPjmsSetWorldTimeRsp : BasePacket
{
public PacketPjmsSetWorldTimeRsp(uint TargetTime) : base(CmdIds.PjmsSetWorldTimeRsp)
{
var proto = new PjmsSetWorldTimeRsp
{
CurTime = TargetTime
};
SetData(proto);
}
}