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

View File

@@ -11,6 +11,7 @@ mod phos;
mod prelude;
mod shader_extensions;
mod utlis;
mod ui;
fn main() {
App::new()

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) {}

View File

@@ -0,0 +1,2 @@
pub mod build_ui;

2
game/main/src/ui/mod.rs Normal file
View File

@@ -0,0 +1,2 @@
pub mod game;