mirror of
https://github.com/nkcmr/HyperTab.git
synced 2026-01-11 20:00:31 +01:00
19 lines
392 B
Swift
19 lines
392 B
Swift
//
|
|
// SceneDelegate.swift
|
|
// iOS (App)
|
|
//
|
|
// Created by Nicholas Comer on 11/18/23.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
|
|
guard let _ = (scene as? UIWindowScene) else { return }
|
|
}
|
|
|
|
}
|