* Get the scores and print them into the box
*/
private void scoresSummary() {
String string = "\n";
SoundManager.playSound(new TTSSound("", false));
for (cero.games.Player players : game.getPlayers()) {
String substring = players.getPlayerName() + " : "
+ ((UnoPlayer) players).getPoints() + " points\n";
string += substring;
SoundManager.playSound(new TTSSound(substring + ".", false));
}
text = new JTextArea();
text.setText(string);
text.setAlignmentX(JTextArea.CENTER_ALIGNMENT);
text.setFont(font);