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.
38 lines
689 B
38 lines
689 B
//
|
|
// NotablePlayers.swift
|
|
// TournamentStats
|
|
//
|
|
// Created by Laurent Morvillier on 04/06/2019.
|
|
// Copyright © 2019 Stax River. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class NotablePlayers {
|
|
|
|
static var all: [String] = [
|
|
"Julien Martini",
|
|
"James Obst",
|
|
"Andrew Lichtenberger",
|
|
"Daniel Negreanu",
|
|
"Nick Petrangelo",
|
|
"Chance Kornuth",
|
|
"Phil Hellmuth",
|
|
"Bryn Kenney",
|
|
"Justin Bonomo",
|
|
"Alex Foxen",
|
|
"Stephen Chidwick",
|
|
"David Peters",
|
|
"Jason Koon",
|
|
// "",
|
|
// "",
|
|
// "",
|
|
// "",
|
|
// "",
|
|
// "",
|
|
// "",
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|