31 lines
712 B
Swift
31 lines
712 B
Swift
//
|
|
// TimerViewController.swift
|
|
// Project308
|
|
//
|
|
// Created by Davis, Timothy A. on 4/19/19.
|
|
// Copyright © 2019 Helton, Aaron S. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class TimerViewController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
|
|
/*
|
|
// MARK: - Navigation
|
|
|
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
|
|
// Get the new view controller using segue.destination.
|
|
// Pass the selected object to the new view controller.
|
|
}
|
|
*/
|
|
|
|
}
|