bevy-game/src/main.rs

12 lines
154 B
Rust
Raw Normal View History

2023-03-18 03:04:16 -07:00
use bevy::prelude::*;
fn gamarjoba() {
println!("Gamarjoba, munde!");
}
2023-03-18 02:44:55 -07:00
fn main() {
2023-03-18 03:04:16 -07:00
App::new()
.add_system(gamarjoba)
.run();
2023-03-18 02:44:55 -07:00
}