azalea_protocol/packets/config/
mod.rs1use azalea_protocol_macros::declare_state_packets;
5
6declare_state_packets!(ConfigPacket,
7 Clientbound => [
8 cookie_request,
9 custom_payload,
10 disconnect,
11 finish_configuration,
12 keep_alive,
13 ping,
14 reset_chat,
15 registry_data,
16 resource_pack_pop,
17 resource_pack_push,
18 store_cookie,
19 transfer,
20 update_enabled_features,
21 update_tags,
22 select_known_packs,
23 custom_report_details,
24 server_links,
25 clear_dialog,
26 show_dialog,
27 code_of_conduct,
28 ],
29 Serverbound => [
30 client_information,
31 cookie_response,
32 custom_payload,
33 finish_configuration,
34 keep_alive,
35 pong,
36 resource_pack,
37 select_known_packs,
38 custom_click_action,
39 accept_code_of_conduct,
40 ]
41);