Setup basic game application
This commit is contained in:
parent
e863f5af88
commit
6705870f81
@ -1,5 +1,12 @@
|
|||||||
|
mod components;
|
||||||
|
mod systems;
|
||||||
|
|
||||||
use bevy::prelude::*;
|
use bevy::prelude::*;
|
||||||
|
use systems::*;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
App::build().run();
|
App::build()
|
||||||
|
.add_startup_system(add_player.system())
|
||||||
|
.add_system(greet_player.system())
|
||||||
|
.run();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user