refactor: required fields
This commit is contained in:
parent
b78c7adf39
commit
18345e775e
1 changed files with 3 additions and 3 deletions
|
@ -8,9 +8,9 @@ namespace Wonderking.Packets.Incoming;
|
||||||
[WonderkingPacketId(OperationCode.CharacterDeletion)]
|
[WonderkingPacketId(OperationCode.CharacterDeletion)]
|
||||||
public class CharacterDeletePacket : IIncomingPacket
|
public class CharacterDeletePacket : IIncomingPacket
|
||||||
{
|
{
|
||||||
public byte Slot { get; set; }
|
public required byte Slot { get; set; }
|
||||||
public string Name { get; set; }
|
public required string Name { get; set; }
|
||||||
public uint Unknown { get; set; }
|
public required uint Unknown { get; set; }
|
||||||
|
|
||||||
public void Deserialize(byte[] data)
|
public void Deserialize(byte[] data)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue