Setup basic game application

This commit is contained in:
Daniel Lynn 2021-07-12 22:43:28 -05:00
parent e863f5af88
commit 6705870f81
Signed by: daniel
GPG Key ID: 28496A140E180A9D

View File

@ -1,5 +1,12 @@
mod components;
mod systems;
use bevy::prelude::*;
use systems::*;
fn main() {
App::build().run();
App::build()
.add_startup_system(add_player.system())
.add_system(greet_player.system())
.run();
}