~ruther/NosSmooth

f70a98fc68d9ff34e8d4213ecb92c87bfd1e8fa6 — František Boháček 3 years ago 558ca8b
feat: add client SayPacket
1 files changed, 17 insertions(+), 0 deletions(-)

A Core/NosSmooth.Packets/Packets/Client/Chat/SayPacket.cs
A Core/NosSmooth.Packets/Packets/Client/Chat/SayPacket.cs => Core/NosSmooth.Packets/Packets/Client/Chat/SayPacket.cs +17 -0
@@ 0,0 1,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;
\ No newline at end of file

Do not follow this link