Files
BetterSEQTA-Plus/safari/iOS (App)/SceneDelegate.swift
T
2023-09-10 10:23:00 +10:00

19 lines
391 B
Swift

//
// SceneDelegate.swift
// iOS (App)
//
// Created by Seth Burkart on 10/9/2023.
//
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 }
}
}