Adjust table info generation

This commit is contained in:
Christoph Hagen
2021-12-09 11:17:11 +01:00
parent 3e85c01809
commit 445363307b
3 changed files with 11 additions and 5 deletions

View File

@ -1,7 +1,5 @@
import Foundation
typealias GameId = String
extension GameType {
var gameClass: GameClass {

View File

@ -1,5 +1,8 @@
import Foundation
/// The string id of a game
typealias GameId = String
enum GameType: String, CaseIterable, Codable {
case rufEichel = "ruf-eichel"
@ -14,6 +17,10 @@ enum GameType: String, CaseIterable, Codable {
case soloHerz = "solo-herz"
case soloSchelln = "solo-schelln"
init?(id: GameId) {
self.init(rawValue: id)
}
var isCall: Bool {
switch self {
case .rufEichel, .rufBlatt, .rufSchelln: