actually using bevy

main
Zynh Ludwig 2024-07-29 22:46:23 -07:00
parent bc7569ecee
commit ebc89c75d9
1 changed files with 7 additions and 1 deletions

View File

@ -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!");
}