//
// RaidfmpPacket.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.Raids;
using NosSmooth.PacketSerializer.Abstractions.Attributes;
namespace NosSmooth.Packets.Server.Raids;
///
/// Raid mp packet that is sent for raids using raidf packet.
/// Raids using raid packet contain hp, mp in raid packet itself.
///
/// The type of the raid packet (3 - player healths)
/// Mp of the players.
[PacketHeader("raidfmp", PacketSource.Server)]
[GenerateSerializer(true)]
public record RaidfmpPacket
(
[PacketIndex(0)]
RaidPacketType Type,
[PacketListIndex(1, ListSeparator = ' ', InnerSeparator = '.')]
IReadOnlyList HpSubPackets
) : IPacket;