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, // 0x00
9        custom_payload, // 0x01
10        disconnect, // 0x02
11        finish_configuration, // 0x03
12        keep_alive, // 0x04
13        ping, // 0x05
14        reset_chat, // 0x06
15        registry_data, // 0x07
16        resource_pack_pop, // 0x08
17        resource_pack_push, // 0x09
18        store_cookie, // 0x0A
19        transfer, // 0x0B
20        update_enabled_features, // 0x0C
21        update_tags, // 0x0D
22        select_known_packs, // 0x0E
23        custom_report_details, // 0x0F
24        server_links, // 0x10
25    ],
26    Serverbound => [
27        client_information, // 0x00
28        cookie_response, // 0x01
29        custom_payload, // 0x02
30        finish_configuration, // 0x03
31        keep_alive, // 0x04
32        pong, // 0x05
33        resource_pack, // 0x06
34        select_known_packs, // 0x07
35    ]
36);