//! Definitions of the NBT tag types and related data structures.
//!
//! Provided types ensure the data can be serialized to a valid NBT by validating the data at creation time.
pub use NbtArray;
pub use NbtCompound;
pub use NbtList;
pub use NbtString;
pub use NbtTag;
pub use NbtTagId;