20 lines
469 B
C#
20 lines
469 B
C#
|
namespace Wonderking.Packets.Outgoing;
|
||
|
|
||
|
[PacketId(OperationCode.CharacterNameCheckResponse)]
|
||
|
public class CharacterNameCheckPacketResponse : IPacket
|
||
|
{
|
||
|
public required bool IsTaken { get; set; }
|
||
|
|
||
|
public void Deserialize(byte[] data)
|
||
|
{
|
||
|
throw new NotSupportedException();
|
||
|
}
|
||
|
|
||
|
public byte[] Serialize()
|
||
|
{
|
||
|
Span<byte> data = stackalloc byte[1];
|
||
|
data[0] = this.IsTaken ? (byte)1 : (byte)0;
|
||
|
return data.ToArray();
|
||
|
}
|
||
|
}
|