chess_game 0.2.0

Simple Chess game
Documentation
pub mod tests;
pub mod turn;
pub mod piece;
pub mod square;
pub mod gui;
pub mod game;
pub mod player;
pub mod color;
pub mod board;

pub mod prelude {
    pub use crate::game::*;
    pub use game_settings::*;
    pub use ui_settings::*;

    pub use crate::player::*;
    pub use local::*;
    pub use random_bot::*;
    pub use mate_in_one_bot::*;
    pub use bong_master_bot::*;
    pub use eval_bot::*;
}