actually using bevy

This commit is contained in:
Zynh Ludwig 2024-07-29 22:46:23 -07:00
parent bc7569ecee
commit ebc89c75d9

View file

@ -1,3 +1,9 @@
use bevy::prelude::*;
fn main() { fn main() {
println!("Hello, world!"); App::new().add_systems(Update, hello_world).run();
}
fn hello_world() {
println!("uwu!");
} }