We are go with Bevy <3

This commit is contained in:
2024-08-23 14:15:22 +03:00
parent b04a5a3925
commit 235574cf19
2 changed files with 17 additions and 1 deletions

View File

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