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

9 lines
106 B
Swift
Raw Normal View History

import Foundation
protocol GameSummarizer {
2021-12-21 11:16:54 +01:00
init(game: GameSummary)
var text: String { get }
}