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.

15 lines
379 B

pub mod asset_loading;
pub mod block;
pub mod network;
pub mod player;
// This is mostly just re-exporting everything for now, but in the future,
// we might want to select exactly what's exposed by the `prelude` module.
pub mod prelude {
pub use super::network;
pub use super::block::*;
pub use super::player::*;
pub use super::asset_loading::LoadResource;
}