Self-educational object-oriented chess game written in C++ as a Windows console application. The grid is created using chars. Chess pieces are notated as:
- White = x Black = y
- K = King
- Q = Queen
- B = Bishop
- N = Knight
- R = Rook
- P = Pawn
The player makes a move by typing the coordinate of piece plus the target coordinate such as d2d4. If the move is illegal the player will be alerted. All rules of chess have been implemented.
Contact me for additional details.