21 lines
687 B
C#
21 lines
687 B
C#
using System;
|
|
using PSO2SERVER.Models;
|
|
using PSO2SERVER.Protocol.Packets;
|
|
using static PSO2SERVER.Protocol.Handlers.CharacterNewNameRequest;
|
|
|
|
namespace PSO2SERVER.Protocol.Handlers
|
|
{
|
|
[PacketHandlerAttr(0x11, 0x64)]
|
|
public class AllBlocksListRequest : PacketHandler
|
|
{
|
|
public FixedList<BlockInfo> Blocks { get; set; } = new FixedList<BlockInfo> (200);
|
|
public uint unk { get; set; }
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|