bevy/examples/hello_world.rs
2020-04-30 10:42:22 -07:00

12 lines
No EOL
223 B
Rust

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