bevy-game/src/main.rs

12 lines
154 B
Rust

use bevy::prelude::*;
fn gamarjoba() {
println!("Gamarjoba, munde!");
}
fn main() {
App::new()
.add_system(gamarjoba)
.run();
}