mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-12 17:34:33 +01:00
17 lines
504 B
C#
17 lines
504 B
C#
using Common.Resources.Proto;
|
|
|
|
namespace PemukulPaku.GameServer.Handlers.Three
|
|
{
|
|
[PacketCmdId(CmdId.GetTeamListReq)]
|
|
internal class GetTeamListReqHandler : IPacketHandler
|
|
{
|
|
public void Handle(Session session, Packet packet)
|
|
{
|
|
GetTeamListReq Data = packet.GetDecodedBody<GetTeamListReq>();
|
|
GetTeamListRsp Rsp = new() { retcode = GetTeamListRsp.Retcode.Succ };
|
|
|
|
session.Send(Packet.FromProto(Rsp, CmdId.GetTeamListRsp));
|
|
}
|
|
}
|
|
}
|