summaryrefslogtreecommitdiff
path: root/packets/character_server/create_character_success_packet.gd
blob: b7f826d471b3eef37c8507c3c6660896fe29b5f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class_name CreateCharacterSuccessPacket
extends Packet


const HEADER := 0x0b6f
const BYTE_LENGTH := 0


## Byte Type: u16
## Byte Length: 2
var packet_length: int

var character_information: CharacterInformation


static func from_bytes(bytes: PackedByteArray):
	var packet = CreateCharacterSuccessPacket.new()
	
	packet.packet_length = bytes.decode_u16(2)
	packet.character_information = CharacterInformation.from_bytes(bytes.slice(4))
	
	return packet