Exemplo n.º 1
0
        public ChessBoardEntity BuildBoard()
        {
            var chessBoardEntity = new ChessBoardEntity();
            var chessPieceList   = _chessPieceLibrary.GetPieces();

            chessBoardEntity.ChessPieceList = chessPieceList;

            return(chessBoardEntity);
        }
 public ChessMovesLib()
 {
     _board = BoardLib.BuildBoard();
 }