class_name RequestCharacterListSuccessPacket extends Packet const HEADER := 0x0b72 const BYTE_LENGTH := 0 ## Byte Type: u16 ## Byte Length: 2 var packet_length: int var character_information: Array static func from_bytes(bytes: PackedByteArray): var packet = RequestCharacterListSuccessPacket.new() packet.packet_length = bytes.decode_u16(2) packet.character_information = CharacterInformation.array_from_bytes(bytes.slice(4)) return packet