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

19 lines
No EOL
457 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("pt_ctl_sub_packet")] // header will be ignored for serializing just sub list packets
public class PtCtlSubPacket : ClientPacket
{
[PacketIndex(0)]
public long UserId { get; set; }
[PacketIndex(1)]
public short UserX { get; set; }
[PacketIndex(2)]
public short UserY { get; set; }
}
}