hieu-chess 0.1.0

a simple chess library that handles move generations, move validation, board representation and piece placements
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod board;
mod chess;
mod constants;
mod error;
mod move_gen;
mod piece;
mod square;
mod utils;

pub use chess::{Chess, Color, Move};
pub use piece::{PType, Piece};
pub use square::{File, Rank, Square};