1
2
3
4
5
6
7
//! An empty application (does nothing)

use bevy::prelude::*;

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