9 lines
106 B
Swift
9 lines
106 B
Swift
import Foundation
|
|
|
|
protocol GameSummarizer {
|
|
|
|
init(game: GameSummary)
|
|
|
|
var text: String { get }
|
|
}
|