aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/handshake/mod.rs
blob: f2e8810ed022962536f7bc2d34808a13f02129c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
pub mod client_intention_packet;

use azalea_protocol_macros::declare_state_packets;

declare_state_packets!(
    HandshakePacket,
    Serverbound => {
        0x00: client_intention_packet::ClientIntentionPacket,
    },
    Clientbound => {}
);