7 lines
76 B
Swift
7 lines
76 B
Swift
|
import Foundation
|
||
|
|
||
|
protocol GameConvertible {
|
||
|
|
||
|
var id: GameId { get }
|
||
|
}
|