Files
XcodeGen/Tests/Fixtures/TestProject/App_iOS/AppDelegate.swift
T
2017-11-22 13:01:17 +01:00

17 lines
499 B
Swift

import UIKit
import Framework
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
_ = FrameworkStruct()
// Standalone files added to project by path-to-file.
_ = standaloneHello()
return true
}
}