basalt_mc_protocol/packets/mod.rs
1//! Minecraft packet definitions organized by connection state.
2//!
3//! Each submodule contains the packet structs for one connection state,
4//! along with direction-specific enums (serverbound/clientbound) that
5//! enable exhaustive pattern matching on received packets.
6//!
7//! Auto-generated by `cargo xt codegen`. Do not edit manually.
8
9pub mod configuration;
10pub mod handshake;
11pub mod login;
12pub mod play;
13pub mod status;