bevy/examples/hello_world.rs
Carter Anderson 3e3ab92ff5 cargo fmt
2020-04-30 22:30:51 -07:00

12 lines
208 B
Rust

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