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