mcproto-types 0.5.0

Minecraft protocol types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Debug subscription events, updates, and their typed payloads.
//!
//! Implementations live in `debug/`; this file is the module root so no
//! `debug/mod.rs` is used.

#[path = "debug/data.rs"]
pub mod data;
#[path = "debug/event.rs"]
pub mod event;
#[path = "debug/update.rs"]
pub mod update;

pub use data::*;
pub use event::*;
pub use update::*;