bevy/examples/hello_world.rs
Thomas Herzog b4c185eb0c cargo fmt
2020-07-26 21:10:18 +02:00

9 lines
159 B
Rust

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