1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// NOTE: This file is @generated automatically by codegen/packet.py.
// Don't edit it directly!
use azalea_protocol_macros::declare_state_packets;
declare_state_packets!(ConfigPacket,
Clientbound => [
cookie_request,
custom_payload,
disconnect,
finish_configuration,
keep_alive,
ping,
reset_chat,
registry_data,
resource_pack_pop,
resource_pack_push,
store_cookie,
transfer,
update_enabled_features,
update_tags,
select_known_packs,
custom_report_details,
server_links,
clear_dialog,
show_dialog,
code_of_conduct,
],
Serverbound => [
client_information,
cookie_response,
custom_payload,
finish_configuration,
keep_alive,
pong,
resource_pack,
select_known_packs,
custom_click_action,
accept_code_of_conduct,
]
);
|