13 lines
216 B
Rust
13 lines
216 B
Rust
pub mod configure_game_rules;
|
|
pub mod popup_screen;
|
|
pub mod select_bot_type;
|
|
pub mod select_play_mode;
|
|
pub mod set_boats_layout;
|
|
pub mod utils;
|
|
|
|
#[derive(Debug)]
|
|
pub enum ScreenResult<E> {
|
|
Ok(E),
|
|
Canceled,
|
|
}
|