~ruther/NosSmooth

ref: 01bf7e2ae9b5f0645f6222ddd25bfca603bbf8db NosSmooth/Core/NosSmooth.Packets/Packets/Client/Chat/SayPacket.cs -rw-r--r-- 432 bytes
01bf7e2a — František Boháček Merge pull request #12 from Rutherther/packets 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  SayPacket.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.Attributes;

namespace NosSmooth.Packets.Packets.Client.Chat;

[PacketHeader("say", PacketSource.Client)]
[GenerateSerializer(true)]
public record SayPacket
(
    [PacketGreedyIndex(0)]
    string Message
) : IPacket;
Do not follow this link