You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
398 B
22 lines
398 B
//
|
|
// TableSize.swift
|
|
// TournamentStats
|
|
//
|
|
// Created by Laurent Morvillier on 30/08/2019.
|
|
// Copyright © 2019 Stax River. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class TableSize {
|
|
|
|
static func format(tableSize: Int) -> String {
|
|
switch tableSize {
|
|
case 2:
|
|
return "Heads-up"
|
|
default:
|
|
return "\(tableSize)-max"
|
|
}
|
|
}
|
|
|
|
}
|
|
|