Skip to main content

mcproto_types/
entity_metadata.rs

1//! Type-safe entity metadata and particle protocol structures.
2//!
3//! The implementation follows the current Java Edition [Entity Metadata
4//! Format]. Submodules live in `entity_metadata/`; this file is the module
5//! root so no `entity_metadata/mod.rs` is used.
6//!
7//! [Entity Metadata Format]: https://minecraft.wiki/w/Java_Edition_protocol/Entity_metadata#Entity_Metadata_Format
8
9#[path = "entity_metadata/metadata.rs"]
10mod metadata;
11#[path = "entity_metadata/particle.rs"]
12mod particle;
13#[path = "entity_metadata/types.rs"]
14mod types;
15
16pub use metadata::*;
17pub use particle::*;
18pub use types::*;