1
2
3
4
5
6
7
//! An empty application with default plugins.

use bevy::prelude::*;

fn main() {
    App::new().add_plugins(DefaultPlugins).run();
}