// Piece implementation // JMC Oct 2000 // this file should not need to be modified #include "piece.h" const int NULL = 0; // constructor Piece::Piece() { display = NULL; grid = NULL; currentPosition = FULL; ableToMove = true; color = White; } // display piece on screen void Piece::Draw() { for (int i=0; i