// A Cell object class Cell { float x,y; float w,h; int state; // Cell Constructor Cell(float tempX, float tempY, float tempW, float tempH) { x = tempX; y = tempY; w = tempW; h = tempH; state = 0; } void click(int mx, int my,int count) { // FILL IN if(mx>x &&mxy && my