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
416 B
22 lines
416 B
//
|
|
// File.swift
|
|
// TournamentStats
|
|
//
|
|
// Created by Laurent Morvillier on 27/08/2019.
|
|
// Copyright © 2019 Stax River. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum Game : String {
|
|
case holdem = "No-Limit Hold'em"
|
|
case omaha = "Pot-Limit Omaha"
|
|
|
|
var label: String {
|
|
switch self {
|
|
case .holdem: return "NL Hold'em"
|
|
case .omaha: return "PL Omaha"
|
|
}
|
|
}
|
|
|
|
}
|
|
|