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

18 lines
No EOL
373 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums.Character;
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("gop")]
public class CharacterOptionPacket : ClientPacket
{
[PacketIndex(0)]
public CharacterOption Option { get; set; }
[PacketIndex(1)]
public bool IsActive { get; set; }
}
}