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

18 lines
No EOL
419 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader(EntryPointPacketHeader)]
public class EntryPointPacket : ClientPacket
{
public const string EntryPointPacketHeader = "WingsEmu.EntryPoint";
[PacketIndex(0)]
public string SessionName { get; set; }
[PacketIndex(1)]
public string Password { get; set; }
}
}