// // LbsPacket.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using NosSmooth.Packets.Server.Login; using NosSmooth.PacketSerializer.Abstractions.Attributes; namespace NosSmooth.Packets.Client.Login; /// /// Function unknown, sent /// right after . /// /// /// After was received, /// and /// should follow. /// /// Unknown, seems to be always 0. [PacketHeader("lbs", PacketSource.Client)] [GenerateSerializer(true)] public record LbsPacket ( [PacketIndex(0)] byte Unknown = 0 ) : IPacket;