Bloxel sandbox game similar to Minecraft "Classic" (2009) written in Rust with Bevy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
528 B

pub mod assets;
pub mod block;
pub mod identifier;
pub mod math;
pub mod network;
pub mod player;
pub mod prelude {
pub use crate::network;
pub use crate::assets::block_definition::*;
pub use crate::assets::manifest::*;
pub use crate::block::*;
pub use crate::identifier::*;
pub use crate::math::*;
pub use crate::network::protocol::*;
pub use crate::player::*;
// Allows use of the `App::load_resource` extension trait function.
pub use crate::assets::asset_tracking::LoadResource;
}