PSO2SERVER/Server/Protocol/Handlers/1C-CharacterInfoHandler/1C-46-UNK.cs

27 lines
703 B
C#
Raw Normal View History

2024-11-24 23:40:50 +08:00
using System;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
2024-11-24 23:40:50 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-11-24 23:40:50 +08:00
{
[PacketHandlerAttr(0x1C, 0x46)]
class _1C_46_UNK : PacketHandler
2024-11-24 23:40:50 +08:00
{
//PACKED
public struct _1C_46_PACKET
{
public uint unk1;
public uint unk2;
public uint unk3;
}
2024-11-24 23:40:50 +08:00
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);
var reader = new PacketReader(data, position, size);
}
}
}