chess_game 0.2.0

Simple Chess game
Documentation
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct UISettings {
    pub view_move_desc: bool,
    pub view_board_display: bool,
    pub swap_colors: bool,
    pub cls: bool,
    pub bot_wait_ms: u64,
    pub view_move: bool
}

impl Default for UISettings {
    fn default() -> Self {
        UISettings { 
            view_move_desc: true, 
            view_board_display: true,
            swap_colors: true, 
            cls: true,
            bot_wait_ms: 1000,
            view_move: false
        }
    }
}