generated from GarandPLG/rust-flake-template
0577697059
Removed the settings UI and its keybinding logic, added a skirmish view and corresponding keybindings, simplified the SettingsState to hold skirmish configuration, updated module exports, and changed the CLI default map height from 25 to 21. Also fixed the main menu selection limit.
12 lines
302 B
Rust
12 lines
302 B
Rust
pub mod main_menu;
|
|
pub mod perk_decks;
|
|
pub mod settings;
|
|
pub mod skills_config;
|
|
pub mod skirmish;
|
|
|
|
pub use main_menu::MainMenuState;
|
|
pub use perk_decks::{PerkDecks, PerkDecksState};
|
|
pub use settings::SettingsState;
|
|
pub use skills_config::SkillsConfigState;
|
|
pub use skirmish::{GameMode, SkirmishState};
|