summaryrefslogtreecommitdiff
path: root/packets/update_critical_weight_packet.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-12-12 02:12:52 +0100
committerDaniel Weipert <git@mail.dweipert.de>2024-12-12 02:12:52 +0100
commita22381eff3bf2286ee27f4d15ddf4c431ea063be (patch)
tree965bdcf12e5e0cf63c88cbba1bd5a52ba474f81f /packets/update_critical_weight_packet.gd
parente3c185e05823e30eccd7728ceda2ee57cc66fd4d (diff)
next commit
Diffstat (limited to 'packets/update_critical_weight_packet.gd')
-rw-r--r--packets/update_critical_weight_packet.gd19
1 files changed, 19 insertions, 0 deletions
diff --git a/packets/update_critical_weight_packet.gd b/packets/update_critical_weight_packet.gd
new file mode 100644
index 0000000..03fb273
--- /dev/null
+++ b/packets/update_critical_weight_packet.gd
@@ -0,0 +1,19 @@
+class_name UpdateCriticalWeightPacket
+extends Packet
+
+
+const HEADER := 0x0ade
+const BYTE_LENGTH := 6
+
+
+## Byte Type: u32
+## Byte Length: 4
+var weight: int
+
+
+static func from_bytes(bytes: PackedByteArray) -> UpdateCriticalWeightPacket:
+ var packet = UpdateCriticalWeightPacket.new()
+
+ packet.weight = bytes.decode_u32(2)
+
+ return packet