pirouettiAssets constant

PieceAssets const pirouettiAssets

Implementation

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