konnektoren_bevy/ui/mod.rs
1pub mod responsive;
2pub mod widgets;
3
4pub use responsive::*;
5pub use widgets::*;
6
7use bevy::prelude::*;
8
9/// Main UI plugin that includes responsive and widget functionality
10pub struct UIPlugin;
11
12impl Plugin for UIPlugin {
13 fn build(&self, app: &mut App) {
14 app.add_plugins(ResponsivePlugin);
15
16 info!("UIPlugin loaded with responsive and widget support");
17 }
18}