bevy/examples/hello_world.rs
2021-07-24 16:43:37 -07:00

9 lines
157 B
Rust

use bevy::prelude::*;
fn main() {
App::new().add_system(hello_world_system.system()).run();
}
fn hello_world_system() {
println!("hello world");
}