summaryrefslogtreecommitdiff
path: root/packets/map_server/update_hotkeys_packet.gd
blob: f991a7e981261fa75c5f0fc07a898a32d7ff57fa (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