Latest commit 6d6bc2a

use bevy::prelude::*;

/// 一个空的但带有默认插件的程序
fn main() {
    App::new().add_plugins(DefaultPlugins).run();
}