azalea_protocol/packets/config/
mod.rs

1// NOTE: This file is @generated automatically by codegen/packet.py.
2// Don't edit it directly!
3
4use 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    ],
28    Serverbound => [
29        client_information,
30        cookie_response,
31        custom_payload,
32        finish_configuration,
33        keep_alive,
34        pong,
35        resource_pack,
36        select_known_packs,
37        custom_click_action,
38    ]
39);