21 lines
521 B
C#
21 lines
521 B
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
using System.Text;
|
|
|
|
namespace Wonderking.Packets.Incoming;
|
|
|
|
[PacketId(OperationCode.CharacterNameCheck)]
|
|
public class CharacterNameCheckPacket : IPacket
|
|
{
|
|
public required string Name { get; set; }
|
|
|
|
public void Deserialize(byte[] data)
|
|
{
|
|
Name = Encoding.ASCII.GetString(data, 0, 20).TrimEnd('\0').TrimEnd('\n').TrimEnd('\0');
|
|
}
|
|
|
|
public byte[] Serialize()
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
}
|