giga-chess 0.5.0

A rust chess library built for performance, handling game logic and legal/best move generation.
Documentation
1
2
3
4
5
6
7
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum GameStatus {
    Running = 0,
    Stalemate = 1,
    Checkmate = 2,
    DrawFiftyMove = 3,
}