import Foundation
protocol GameSummarizer {
var table: FinishedTable { get }
init(table: FinishedTable)
var text: String { get }
}