mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
19 lines
391 B
Swift
19 lines
391 B
Swift
//
|
|
// SceneDelegate.swift
|
|
// iOS (App)
|
|
//
|
|
// Created by Seth Burkart on 3/12/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 }
|
|
}
|
|
|
|
}
|