bevy/examples/hello_world.rs
2020-12-15 21:57:16 -08: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");
}