PSO2SERVER/Server/Packets/Handlers/2F-SymbolHandler/2F-06-SymbolArtHandler.cs

19 lines
535 B
C#
Raw Normal View History

2024-09-10 01:13:20 +08:00
using PSO2SERVER.Packets.PSOPackets;
2024-09-10 00:31:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-09-10 01:13:20 +08:00
namespace PSO2SERVER.Packets.Handlers
2024-09-10 00:31:40 +08:00
{
[PacketHandlerAttr(0x2F, 0x6)]
class SymbolArtListHandler : PacketHandler
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
2024-09-20 21:58:37 +08:00
context.SendPacket(new SymbolArtListPacket(new Models.ObjectHeader((uint)context._account.AccountId, Models.EntityType.Player)));
2024-09-10 00:31:40 +08:00
}
}
}