mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-06 10:06:26 +02:00
Add default FEN
This commit is contained in:
parent
16f2c01327
commit
934b00f729
1 changed files with 3 additions and 1 deletions
|
@ -3,7 +3,9 @@
|
||||||
namespace chessarbiter {
|
namespace chessarbiter {
|
||||||
ChessArbiter::ChessArbiter()
|
ChessArbiter::ChessArbiter()
|
||||||
: wPawn(1), wRook(5), wKnight(3), wBishop(3), wQueen(9), wKing(0), SAN(""),
|
: wPawn(1), wRook(5), wKnight(3), wBishop(3), wQueen(9), wKing(0), SAN(""),
|
||||||
capture(' ') {}
|
capture(' ') {
|
||||||
|
Setup("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1");
|
||||||
|
}
|
||||||
|
|
||||||
void ChessArbiter::Setup(std::string fen) {
|
void ChessArbiter::Setup(std::string fen) {
|
||||||
positions.clear();
|
positions.clear();
|
||||||
|
|
Loading…
Add table
Reference in a new issue