21 lines
556 B
C#
21 lines
556 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PSO2SERVER.Packets.Handlers
|
|
{
|
|
|
|
//[PacketHandlerAttr(0x03, 0x00)]
|
|
//class MapTransfer : PacketHandler
|
|
//{
|
|
// /// (0x03, 0x00) Map Transfer.
|
|
// public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
|
// {
|
|
// //var info = string.Format("[<--] 接收到的数据 (hex): ");
|
|
// //Logger.WriteHex(info, data);
|
|
// }
|
|
//}
|
|
}
|