#include using namespace std; const int BLACK=1; const int RED=2; class GamePiece { public: // Location on the board. int x,y; // Which color is the piece. int color; // Is the piece a king. bool king; // Has the pience been "eaten" (removed from the board. bool eaten; }; void setupPieces(GamePiece pieces[], int size, int color) { // initalize the default values for the pieces. for(int i=0;i