bevy/examples/hello_world.rs
Carter Anderson 3a6f6de277
System Inputs, Outputs, Chaining, and Registration Ergo (#876)
System Inputs, Outputs, Chaining, and Registration Ergo
2020-11-16 18:18:00 -08:00

9 lines
150 B
Rust

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