bevy/examples/hello_world.rs
2020-07-22 13:32:17 -07:00

11 lines
177 B
Rust

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