Initial work

This commit is contained in:
Greg Shuflin 2023-03-18 03:04:16 -07:00
parent dcb1ccaade
commit b297d63e31
1 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
fn main() {
println!("Hello, world!");
use bevy::prelude::*;
fn gamarjoba() {
println!("Gamarjoba, munde!");
}
fn main() {
App::new()
.add_system(gamarjoba)
.run();
}