default plugins

main
Zynh Ludwig 2024-07-29 23:03:53 -07:00
parent e395417794
commit 16a9fca8ce
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@ use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_systems(Startup, add_people)
.add_systems(Update, (hello_world, greet_people).chain())
.run();