Show the last move made by AI
Status: Beta
Brought to you by:
jameselliot501
We want board locations (eg A-H and 1-8) and we want to show the last move made, eg A1 to F2 (take) or A2 to C2
So the user knows where the last move was made...
A common question when playing with another person in chess is "Where did you move?" if they miss the move...
This created confusion in the game in the first version
I made an attempt to ammend this, even with just giving numbered coordinates, however his methods are way above mine. i tried to cast a int32 to a string but it didnt like me. was just going to make the notify label show what i wanted it to show me
char bestMove[100] = (bestMoveFound[0]);
notify->Text=bestMove.ToString();
an unelegant solution at best, but i gave it a shot