alphaAssets constant

PieceAssets const alphaAssets

Implementation

static const PieceAssets alphaAssets = IMapConst({
  PieceKind.blackRook:
      AssetImage('$_pieceSetsPath/alpha/bR.png', package: 'chessground'),
  PieceKind.blackPawn:
      AssetImage('$_pieceSetsPath/alpha/bP.png', package: 'chessground'),
  PieceKind.blackKnight:
      AssetImage('$_pieceSetsPath/alpha/bN.png', package: 'chessground'),
  PieceKind.blackBishop:
      AssetImage('$_pieceSetsPath/alpha/bB.png', package: 'chessground'),
  PieceKind.blackQueen:
      AssetImage('$_pieceSetsPath/alpha/bQ.png', package: 'chessground'),
  PieceKind.blackKing:
      AssetImage('$_pieceSetsPath/alpha/bK.png', package: 'chessground'),
  PieceKind.whiteRook:
      AssetImage('$_pieceSetsPath/alpha/wR.png', package: 'chessground'),
  PieceKind.whitePawn:
      AssetImage('$_pieceSetsPath/alpha/wP.png', package: 'chessground'),
  PieceKind.whiteKnight:
      AssetImage('$_pieceSetsPath/alpha/wN.png', package: 'chessground'),
  PieceKind.whiteBishop:
      AssetImage('$_pieceSetsPath/alpha/wB.png', package: 'chessground'),
  PieceKind.whiteQueen:
      AssetImage('$_pieceSetsPath/alpha/wQ.png', package: 'chessground'),
  PieceKind.whiteKing:
      AssetImage('$_pieceSetsPath/alpha/wK.png', package: 'chessground'),
});