This commit is contained in:
2024-11-06 22:51:35 -05:00
parent c315c206f4
commit 00468aa18d
4 changed files with 16 additions and 0 deletions
+1
View File
@@ -11,6 +11,7 @@ mod phos;
mod prelude; mod prelude;
mod shader_extensions; mod shader_extensions;
mod utlis; mod utlis;
mod ui;
fn main() { fn main() {
App::new() App::new()
+11
View File
@@ -0,0 +1,11 @@
use bevy::prelude::*;
pub struct BuildUiPlugin;
impl Plugin for BuildUiPlugin {
fn build(&self, app: &mut App) {
app.add_systems(PostStartup, setup);
}
}
fn setup(mut commands: Commands) {}
+2
View File
@@ -0,0 +1,2 @@
pub mod build_ui;
+2
View File
@@ -0,0 +1,2 @@
pub mod game;