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

23 lines
No EOL
454 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("ptctl")]
public class PtCtlPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public short MapId { get; set; }
[PacketIndex(1)]
public byte Amount { get; set; }
[PacketIndex(2, SerializeToEnd = true)]
public string PacketEnd { get; set; }
#endregion
}
}