// // BfSubPacket.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.PacketSerializer.Abstractions.Attributes; namespace NosSmooth.Packets.Server.Buffs; /// /// A sub packet of . /// /// Uknown TODO. /// The buff card id. /// The duration of the buff. [PacketHeader(null, PacketSource.Server)] [GenerateSerializer(true)] public record BfSubPacket ( [PacketIndex(0)] int Charge, [PacketIndex(1)] short CardId, [PacketIndex(2)] int Time ) : IPacket;