summaryrefslogtreecommitdiff
path: root/packets/new_mail_status_packet.gd
diff options
context:
space:
mode:
Diffstat (limited to 'packets/new_mail_status_packet.gd')
-rw-r--r--packets/new_mail_status_packet.gd19
1 files changed, 0 insertions, 19 deletions
diff --git a/packets/new_mail_status_packet.gd b/packets/new_mail_status_packet.gd
deleted file mode 100644
index 4e87ed5..0000000
--- a/packets/new_mail_status_packet.gd
+++ /dev/null
@@ -1,19 +0,0 @@
-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