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.
|
use bevy::prelude::*; |
|
|
|
pub mod asset_tracking; |
|
pub mod block_definition; |
|
|
|
pub fn plugin(app: &mut App) { |
|
// `tracking::plugin` must come first. |
|
app.add_plugins(asset_tracking::plugin); |
|
|
|
app.add_plugins(block_definition::plugin); |
|
}
|
|
|