aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/config/mod.rs
blob: 4eda0f03900db07f4f22fcc754c5460324d6aa5b (plain)
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
// 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,
    ],
    Serverbound => [
        client_information,
        cookie_response,
        custom_payload,
        finish_configuration,
        keep_alive,
        pong,
        resource_pack,
        select_known_packs,
    ]
);