This commit is contained in:
Rendo 2026-08-02 21:35:19 +05:00
commit 86b9134156
5 changed files with 172 additions and 8 deletions

View file

@ -2,6 +2,8 @@ use bevy::prelude::*;
use game::GameViewPlugin;
use crate::view::ui::UIPlugin;
pub mod ui;
pub mod game;
@ -9,6 +11,6 @@ pub struct ViewPlugin;
impl Plugin for ViewPlugin {
fn build(&self, app: &mut App) {
app.add_plugins(GameViewPlugin);
app.add_plugins((GameViewPlugin,UIPlugin));
}
}