bevy 0.16 基础案例

use bevy::prelude::*;

fn main() {
   App::new()
       .add_systems(Update, hello_world_system)
       .run();
}

fn hello_world_system() {
   println!("hello world");
}
posted @ 2025-05-11 12:27  Furau  阅读(5)  评论(0)    收藏  举报