1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Settings Menu
//!
//! This has the various "scenes" which are part of the settings menu. The idea is for this to be
//! in the middle of the screen, and the background to be blurred out; that way it can be used in
//! any context and still be readable.
//!
//! See [`game_library::settings`] for the settings resources and other things.
//!
//! This module will have to handle drawing things to the screen and sending the appropriate
//! events on setting changes.

mod accessibility;
mod audio;
mod base;
mod button_actions;
mod controls;
mod display;
mod events;
mod gameplay;
mod main;
mod plugin;

pub use plugin::SettingsMenuPlugin;