mcproto-types 0.5.0

Minecraft protocol types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Minecraft player profiles and resolvable profile references.
//!
//! The concrete implementations live in `profile/`; this file is the module
//! root so no `profile/mod.rs` is used.

#[path = "profile/game_profile.rs"]
pub mod game_profile;
#[path = "profile/resolvable_profile.rs"]
pub mod resolvable_profile;

pub use game_profile::*;
pub use resolvable_profile::*;