diff options
Diffstat (limited to 'packets/update_critical_weight_packet.gd')
-rw-r--r-- | packets/update_critical_weight_packet.gd | 19 |
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 |