17 lines
No EOL
291 B
C#
17 lines
No EOL
291 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
namespace WingsEmu.Packets.ClientPackets
|
|
{
|
|
[PacketHeader("$fl")]
|
|
public class FlPacket : ClientPacket
|
|
{
|
|
#region Properties
|
|
|
|
[PacketIndex(0)]
|
|
public string CharName { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |