mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
31 lines
713 B
Swift
31 lines
713 B
Swift
//
|
|
// NowPlayingViewController.swift
|
|
// Persephone-iOS
|
|
//
|
|
// Created by Dan Barber on 2020-12-01.
|
|
// Copyright © 2020 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class NowPlayingViewController: 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.
|
|
}
|
|
*/
|
|
|
|
}
|