#![doc = include_str!("../README.md")] #![feature(int_roundings)] #![feature(const_for)] #![allow(incomplete_features)] #![feature(generic_const_exprs)] mod difficulty; pub use difficulty::*; mod resource_location; pub use resource_location::*; mod game_type; pub use game_type::*; mod position; pub use position::*; mod direction; pub use direction::*; mod delta; pub use delta::*; pub mod particle; mod cursor3d; pub use cursor3d::*; mod bitset; pub use bitset::*; mod aabb; pub use aabb::*; mod block_hit_result; pub use block_hit_result::*; pub mod math; pub mod tier;