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

17 lines
No EOL
300 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("ta_call")]
public class TaCallPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public byte CalledIndex { get; set; }
#endregion
}
}