Ejemplo n.º 1
0
 private void addNewGame(Game game)
 {
     History.AddGame(game);
     game.White.SetScore(game.CalculateWhiteScore(settings, History));
     game.Black.SetScore(game.CalculateBlackScore(settings, History));
     saveExecute();
 }