aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/lib.rs
blob: c6b51cb1a7e170df5b9e37ed1bc96317fc3bf88e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Random miscellaneous things like UUIDs that don't deserve their own crate.

pub mod difficulty;
pub mod game_type;
pub mod resource_location;
pub mod serializable_uuid;

mod slot;
pub use slot::{Slot, SlotData};

mod block_pos;
pub use block_pos::BlockPos;

mod direction;
pub use direction::Direction;