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

9 lines
109 B
Swift
Raw Normal View History

import Foundation
protocol GameSummarizer {
init(game: GameStatistics)
var text: String { get }
}