PSO2SERVER/Server/Protocol/Handlers/19-UnkHandler/19-06-UNK.cs

20 lines
549 B
C#

using System;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
namespace PSO2SERVER.Protocol.Handlers
{
[PacketHandlerAttr(0x19, 0x06)]
public class _19_06_UNK : PacketHandler
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
Logger.WriteHex(info, data);
//context.SendPacket(new NoPayloadPacket(0x19, 0x07));
}
}
}