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

30 lines
No EOL
626 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums;
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("u_ps")]
public class UpsPacket : ClientPacket
{
[PacketIndex(0)]
public int MateTransportId { get; set; }
[PacketIndex(1)]
public VisualType TargetType { get; set; }
[PacketIndex(2)]
public int TargetId { get; set; }
[PacketIndex(3)]
public int SkillSlot { get; set; }
[PacketIndex(4)]
public short MapX { get; set; }
[PacketIndex(5)]
public short MapY { get; set; }
}
}