mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-14 12:34:34 +01:00
16 lines
542 B
C#
16 lines
542 B
C#
using Common.Resources.Proto;
|
|
|
|
namespace PemukulPaku.GameServer.Handlers.One
|
|
{
|
|
[PacketCmdId(CmdId.ReportClientDataVersionReq)]
|
|
internal class ReportClientDataVersionReqHandler : IPacketHandler
|
|
{
|
|
public void Handle(Session session, Packet packet)
|
|
{
|
|
ReportClientDataVersionReq Data = packet.GetDecodedBody<ReportClientDataVersionReq>();
|
|
|
|
session.Send(Packet.FromProto(new ReportClientDataVersionRsp() { ServerVersion = Data.Version }, CmdId.ReportClientDataVersionRsp));
|
|
}
|
|
}
|
|
}
|