Schafkopf-Server/Sources/App/GameSummary/GameSummarizer.swift

11 lines
147 B
Swift
Raw Normal View History

import Foundation
protocol GameSummarizer {
2021-12-21 14:24:53 +01:00
var table: FinishedTable { get }
init(table: FinishedTable)
var text: String { get }
}