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