//
// TitinfoPacket.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.Entities;
using NosSmooth.PacketSerializer.Abstractions.Attributes;
namespace NosSmooth.Packets.Server.Character;
///
/// Information about titles of the character.
///
/// The type of the entity, seems to be always a player.
/// The id of the character.
/// Unknown, seems to be vnum of title, but which one?
/// Unknown, seems to be vnum of title, but which one?
[PacketHeader("titinfo", PacketSource.Server)]
[GenerateSerializer(true)]
public record TitinfoPacket
(
[PacketIndex(0)]
EntityType EntityType,
[PacketIndex(1)]
long CharacterId,
[PacketIndex(2)]
long UnknownTitleVNum1,
[PacketIndex(3)]
long UnknownTitleVnum2
) : IPacket;