bevy/examples/hello_world.rs

10 lines
157 B
Rust
Raw Normal View History

use bevy::prelude::*;
fn main() {
2021-04-11 13:13:07 -07:00
App::new().add_system(hello_world_system.system()).run();
}
2020-04-30 10:42:22 -07:00
fn hello_world_system() {
2020-04-30 10:42:22 -07:00
println!("hello world");
2020-04-30 22:30:51 -07:00
}