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

13 lines
No EOL
237 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("psl")]
public class PslPacket : ClientPacket
{
[PacketIndex(0)]
public int Type { get; set; }
}
}