server-master/srcs/WingsAPI.Packets/ClientPackets/PsopServerPacket.cs
2026-02-10 18:21:30 +01:00

23 lines
No EOL
435 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("ps_op")]
public class PsopServerPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public byte PetSlot { get; set; }
[PacketIndex(1)]
public byte SkillSlot { get; set; }
[PacketIndex(2)]
public byte Option { get; set; }
#endregion
}
}