Files
HaishinKit.swift/Examples/tvOS/AppDelegate.swift
T
2020-01-13 14:18:41 +09:00

11 lines
283 B
Swift

import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
true
}
}