actually using bevy
This commit is contained in:
parent
bc7569ecee
commit
ebc89c75d9
1 changed files with 7 additions and 1 deletions
|
@ -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!");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue