An amazing project that generates micro reports from tournament results
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.

24 lines
453 B

//
// File.swift
// TournamentStats
//
// Created by Laurent Morvillier on 15/08/2019.
// Copyright © 2019 Stax River. All rights reserved.
//
import Foundation
import UIKit
class Label: UILabel {
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
self._initialize()
}
fileprivate func _initialize() {
self.textColor = UIColor.white
self.font = Fonts.subTitle
}
}