Add 'chess_board::InvalidError'
This commit is contained in:
parent
c3a9a55be1
commit
5ddab6af0e
2 changed files with 53 additions and 0 deletions
|
|
@ -5,6 +5,9 @@ use crate::{
|
|||
|
||||
use super::{Bitboard, CastleRights, Color, File, Move, Piece, Rank, Square};
|
||||
|
||||
mod error;
|
||||
pub use error::*;
|
||||
|
||||
/// Represent an on-going chess game.
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
|
||||
pub struct ChessBoard {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue