Initial Commit

This commit is contained in:
nick comer
2023-11-18 10:31:31 -05:00
commit d5c4e18a17
44 changed files with 1744 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//
// 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 }
}
}