summaryrefslogtreecommitdiff
path: root/packets/map_server/initial_status_packet.gd
blob: 9c41ef9648cbc6dff39041175cd29fd94e7e0018 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
## rAthena References:
## - ZC_STATUS
## - clif_initialstatus
class_name InitialStatusPacket
extends Packet


const HEADER := 0x00bd
const BYTE_LENGTH := 2 + 14 + 28


# TODO


static func from_bytes(bytes: PackedByteArray) -> InitialStatusPacket:
	var packet = InitialStatusPacket.new()
	
	return packet