summaryrefslogtreecommitdiff
path: root/packets/map_server/update_hotkeys_packet.gd
blob: 3788d1d84234f708078143cfbfab6c430b05e022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## rAthena References:
## - ZC_SHORTCUT_KEY_LIST
## - clif_hotkeys_send
class_name UpdateHotkeysPacket
extends Packet


const HEADER := 0x0b20
const BYTE_LENGTH := 2 + 1 + 2 + 7*38

# TODO


static func from_bytes(_bytes: PackedByteArray) -> UpdateHotkeysPacket:
	var packet = UpdateHotkeysPacket.new()
	
	return packet