mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-13 01:34:35 +01:00
16 lines
413 B
C#
16 lines
413 B
C#
using Common.Resources.Proto;
|
|
|
|
namespace PemukulPaku.GameServer.Handlers
|
|
{
|
|
[PacketCmdId(CmdId.GetGodWarReq)]
|
|
internal class GetGodWarReqHandler : IPacketHandler
|
|
{
|
|
public void Handle(Session session, Packet packet)
|
|
{
|
|
GetGodWarRsp Rsp = new() { retcode = GetGodWarRsp.Retcode.Succ };
|
|
|
|
session.Send(Packet.FromProto(Rsp, CmdId.GetGodWarRsp));
|
|
}
|
|
}
|
|
}
|