1 2 3 4 5 6 7 8 9 10 11 12
pub mod serverbound; pub use serverbound::*; pub mod clientbound; use super::Packet; pub use clientbound::*; hierarchy! { child<Packet> enum Status { StatusServerbound, StatusClientbound, } }