mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-12 19:14:34 +01:00
17 lines
507 B
C#
17 lines
507 B
C#
using Common.Resources.Proto;
|
|
|
|
namespace PemukulPaku.GameServer.Handlers
|
|
{
|
|
[PacketCmdId(CmdId.GetFrameDataReq)]
|
|
internal class GetFrameDataReqHandler : IPacketHandler
|
|
{
|
|
public void Handle(Session session, Packet packet)
|
|
{
|
|
GetFrameDataRsp Rsp = new() { retcode = GetFrameDataRsp.Retcode.Succ, IsAll = true };
|
|
Rsp.FrameLists.Add(new FrameData() { Id = 200001 });
|
|
|
|
session.Send(Packet.FromProto(Rsp, CmdId.GetFrameDataRsp));
|
|
}
|
|
}
|
|
}
|