// // ScNSkillSubPacket.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.Enums.Mates; using NosSmooth.PacketSerializer.Abstractions.Attributes; namespace NosSmooth.Packets.Server.Mates; /// /// A sub packet of /// containing information about partner's /// sp skill. /// /// The vnum of the skill. /// The rank of the skill. [PacketHeader(null, PacketSource.Server)] [GenerateSerializer(true)] public record ScNSkillSubPacket ( [PacketIndex(0)] int SkillVNum, [PacketIndex(1)] PartnerSkillRank Rank ) : IPacket;