PSO2SERVER/Server/Packets/Handlers/SymbolArtHandler.cs

19 lines
524 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)
{
context.SendPacket(new SymbolArtList(new Models.ObjectHeader((uint)context.User.PlayerId, Models.EntityType.Player)));
}
}
}