mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
3a6f6de277
System Inputs, Outputs, Chaining, and Registration Ergo
9 lines
150 B
Rust
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");
|
|
}
|