23 lines
452 B
Swift
23 lines
452 B
Swift
//
|
|
// AppDelegate.swift
|
|
// PoseTrackingLindera
|
|
//
|
|
// Created by Mautisim Munir on 17/10/2022.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@main
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
// Override point for customization after application launch.
|
|
return true
|
|
}
|
|
|
|
|
|
}
|
|
|