Add 'ChessBoardBuilder'

This commit is contained in:
Bruno BELANYI 2024-04-01 21:19:55 +01:00
parent bce690d363
commit 8962fd90f4
2 changed files with 164 additions and 0 deletions

View file

@ -5,6 +5,9 @@ use crate::{
use super::{Bitboard, CastleRights, Color, File, Move, Piece, Rank, Square};
mod builder;
pub use builder::*;
mod error;
pub use error::*;