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