Files
DanhengServer-OpenSource/GameServer/Server/Packet/Recv/Scene/HandlerLeaveMapRotationRegionCsReq.cs
2024-04-14 17:41:19 +08:00

18 lines
484 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EggLink.DanhengServer.Server.Packet.Recv.Scene
{
[Opcode(CmdIds.LeaveMapRotationRegionCsReq)]
public class HandlerLeaveMapRotationRegionCsReq : Handler
{
public override void OnHandle(Connection connection, byte[] header, byte[] data)
{
connection.SendPacket(CmdIds.LeaveMapRotationRegionScRsp);
}
}
}