Just one more thing about enumerators
How can i compare them
e.g.
bool Move(int next_rank, char* next_row)
{
if (p1::colour = white)
{
cout << "Piece white";
}
return true;
}
int main()
{
Piece1 p1("P1",2,"b",Piece::white);
p1.Move(1,"a")
return 0;
}
basically i would like to...