ui
This commit is contained in:
11
game/main/src/ui/game/build_ui.rs
Normal file
11
game/main/src/ui/game/build_ui.rs
Normal 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
game/main/src/ui/game/mod.rs
Normal file
2
game/main/src/ui/game/mod.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
pub mod build_ui;
|
||||
2
game/main/src/ui/mod.rs
Normal file
2
game/main/src/ui/mod.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
pub mod game;
|
||||
Reference in New Issue
Block a user