23 lines
335 B
JavaScript
23 lines
335 B
JavaScript
export {
|
|
Players,
|
|
GameStates,
|
|
Pieces,
|
|
INITIAL_POSITION,
|
|
BOARD_SIZE,
|
|
} from './constants';
|
|
|
|
export { Board } from './board';
|
|
|
|
export {
|
|
cellIsEmpty,
|
|
queenPiece,
|
|
eachCell,
|
|
compareCells,
|
|
pieceIsPlayer,
|
|
pieceIsQueen,
|
|
shouldQueen,
|
|
clonePosition,
|
|
filterToLongestCaptures,
|
|
cellWithinBounds,
|
|
} from './utilities';
|