~ruther/NosSmooth

ref: 7a30c95d162ec3a3ce1691f7b72b20e515a7c785 NosSmooth/Packets/NosSmooth.Packets/Server/Chat/SaytPacket.cs -rw-r--r-- 1.1 KiB
7a30c95d — Rutherther tests(core): add tests for contracts 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
//  SaytPacket.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.Chat;
using NosSmooth.Packets.Enums.Entities;
using NosSmooth.PacketSerializer.Abstractions.Attributes;
using NosSmooth.PacketSerializer.Abstractions.Common;

namespace NosSmooth.Packets.Server.Chat;

/// <summary>
/// A message from an entity in chat.
/// </summary>
/// <param name="EntityType">The type of the entity that spoke.</param>
/// <param name="EntityId">The id of the entity that spoke.</param>
/// <param name="Color">The say/message color.</param>
/// <param name="Name">The name of the entity.</param>
/// <param name="Message">The spoken message.</param>
[PacketHeader("sayt", PacketSource.Server)]
[GenerateSerializer(true)]
public record SaytPacket
(
    [PacketIndex(0)]
    EntityType EntityType,
    [PacketIndex(1)]
    long EntityId,
    [PacketIndex(2)]
    SayColor Color,
    [PacketIndex(3)]
    NameString Name,
    [PacketGreedyIndex(4, IsOptional = true)]
    string? Message
) : IPacket;
Do not follow this link