Change CHESS_CARS to CPP std::array

master
Justin Pilon 5 years ago
parent f3248ad171
commit e40f10adde

@ -20,7 +20,7 @@ enum PieceType {
};
// Access with CHESS_CHARS[PieceType] to get the character for the piece.
const char CHESS_CHARS[13] = {
const std::array<char, 13> CHESS_CHARS = {
' ',
'p', 'n', 'b', 'r', 'q', 'k',
'P', 'N', 'B', 'R', 'Q', 'K'

Loading…
Cancel
Save