diff --git a/src/main.rs b/src/main.rs index e7a11a9..daa0064 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,9 @@ +use bevy::prelude::*; + fn main() { - println!("Hello, world!"); + App::new().add_systems(Update, hello_world).run(); +} + +fn hello_world() { + println!("uwu!"); }