Add new game string outputer and use it.

modify some of the other outputters to look better
This commit is contained in:
Marc Di Luzio 2014-12-16 13:13:02 +00:00
parent 24ac058475
commit 002c1e5927
5 changed files with 39 additions and 2 deletions

View file

@ -180,6 +180,8 @@ const char* tests()
if ( game.CheckForWin() != Team::Blue )
return "Game failed to recognise a win for the right Team";
std::cout<<game.GetStateAsString()<<std::endl;
}
return 0;