generated from GarandPLG/rust-flake-template
cf843057c3
Introduce a `side_panel` flag throughout the skirmish state, board creation, and cell area calculation to enable a detachable side panel. Refactor the title helper to own its strings and use a static separator, updating the single‑title helper accordingly. Add a new `SidePanelWidget` and expose the `skirmish_main_area_layout` helper. Extend keybindings with `Tab` and `ShiftTab` actions under a new `Opener` group. Update structures and units to implement a `get_name` method and adjust related traits and imports.
8 lines
188 B
Rust
8 lines
188 B
Rust
mod default;
|
|
mod main_menu;
|
|
mod skirmish;
|
|
|
|
pub use default::default_view;
|
|
pub use main_menu::main_menu_view;
|
|
pub use skirmish::{skirmish_layout, skirmish_main_area_layout, skirmish_view};
|