diff options
Diffstat (limited to 'packets/new_mail_status_packet.gd')
-rw-r--r-- | packets/new_mail_status_packet.gd | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packets/new_mail_status_packet.gd b/packets/new_mail_status_packet.gd new file mode 100644 index 0000000..4e87ed5 --- /dev/null +++ b/packets/new_mail_status_packet.gd @@ -0,0 +1,19 @@ +class_name NewMailStatusPacket +extends Packet + + +const HEADER := 0x09e7 +const BYTE_LENGTH := 3 + + +## Byte Type: u8 +## Byte Length: 1 +var new_available: int + + +static func from_bytes(bytes: PackedByteArray): + var packet = NewMailStatusPacket.new() + + packet.new_available = bytes.decode_u8(2) + + return packet |