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

17 lines
No EOL
301 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("glist")]
public class GListPacket : ClientPacket
{
#region Properties
[PacketIndex(1)]
public GListPacketType Type { get; set; }
#endregion
}
}