onyx-tasks/src/main.rs
2025-08-24 05:45:43 -07:00

12 lines
211 B
Rust

use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_systems(Update, hello_world_system)
.run();
}
fn hello_world_system() {
println!("hello world");
}