class_name UpdateAttackRangePacket extends Packet const HEADER := 0x013a const BYTE_LENGTH := 4 ## Byte Type: i16 ## Byte Length: 2 var current_attack_range: int static func from_bytes(bytes: PackedByteArray): var packet = UpdateAttackRangePacket.new() packet.current_attack_range = bytes.decode_s16(2) return packet