azalea_protocol/packets/login/
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!(LoginPacket,
7    Clientbound => [
8        login_disconnect, // 0x00
9        hello, // 0x01
10        login_finished, // 0x02
11        login_compression, // 0x03
12        custom_query, // 0x04
13        cookie_request, // 0x05
14    ],
15    Serverbound => [
16        hello, // 0x00
17        key, // 0x01
18        custom_query_answer, // 0x02
19        login_acknowledged, // 0x03
20        cookie_response, // 0x04
21    ]
22);