Minor changes to support debugging Alpha-Beta move generator.

This commit is contained in:
Woody Folsom
2012-04-25 09:27:52 -04:00
parent 10f43ee31c
commit b87f58cb31
12 changed files with 297 additions and 102 deletions

View File

@@ -28,4 +28,9 @@ public class Move {
public TileColor getColor() {
return color;
}
@Override
public String toString() {
return "Play " + color + "@" + cp;
}
}