Add final statistics when game ends

This commit is contained in:
Christoph Hagen
2021-12-21 09:53:42 +01:00
parent fa1be9485e
commit 941b25346d
5 changed files with 43 additions and 4 deletions

View File

@ -84,4 +84,10 @@ final class FinishedTable: AbstractTable<FinishedPlayer> {
let table = DealingTable(table: waiting)
return (.success, table)
}
override func tableInfo(forPlayerAt index: Int) -> TableInfo {
var info = super.tableInfo(forPlayerAt: index)
info.gameStats = GameStatistics(table: self, language: language)
return info
}
}