PSO2SERVER/Server/Packets/Handlers/SymbolArtHandler.cs
2024-09-11 17:13:00 +08:00

19 lines
524 B
C#

using PSO2SERVER.Packets.PSOPackets;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PSO2SERVER.Packets.Handlers
{
[PacketHandlerAttr(0x2F, 0x6)]
class SymbolArtListHandler : PacketHandler
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
context.SendPacket(new SymbolArtList(new Models.ObjectHeader((uint)context.User.PlayerId, Models.EntityType.Player)));
}
}
}