This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.

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,
}