bevy_registration 0.2.4

Run code on the app from far away.
Documentation
1
2
3
4
5
6
7
use bevy::app::App;

pub fn app() {
    App::new()
        .add_plugins((bevy::DefaultPlugins, bevy_registration::RegistrationPlugin))
        .run();
}