2024-02-07 15:40:36 +00:00
|
|
|
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
|
2023-11-20 18:58:30 +00:00
|
|
|
|
2024-04-04 14:57:42 +00:00
|
|
|
using RaiNote.PacketMediator;
|
2024-02-04 18:52:45 +00:00
|
|
|
|
2023-11-15 19:00:08 +00:00
|
|
|
namespace Wonderking.Packets.Outgoing;
|
|
|
|
|
2024-02-04 18:52:45 +00:00
|
|
|
[WonderkingPacketId(OperationCode.CharacterNameCheckResponse)]
|
|
|
|
public class CharacterNameCheckPacketResponse : IOutgoingPacket
|
2023-11-15 19:00:08 +00:00
|
|
|
{
|
|
|
|
public required bool IsTaken { get; set; }
|
2024-02-07 15:40:36 +00:00
|
|
|
|
2023-11-15 19:00:08 +00:00
|
|
|
public byte[] Serialize()
|
|
|
|
{
|
|
|
|
Span<byte> data = stackalloc byte[1];
|
2023-11-19 16:07:28 +00:00
|
|
|
data[0] = IsTaken ? (byte)1 : (byte)0;
|
2023-11-15 19:00:08 +00:00
|
|
|
return data.ToArray();
|
|
|
|
}
|
|
|
|
}
|