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.

10 lines
201 B

use bevy::prelude::*;
mod client_inputs;
mod cursor_grab;
pub use cursor_grab::is_cursor_grabbed;
pub fn plugin(app: &mut App) {
app.add_plugins((client_inputs::plugin, cursor_grab::plugin));
}