panelkit/PanelKit Test Host/AppDelegate.swift
2017-03-10 00:18:31 +01:00

22 lines
494 B
Swift

//
// AppDelegate.swift
// PanelKit Test Host
//
// Created by Louis D'hauwe on 09/03/2017.
// Copyright © 2017 Silver Fox. All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
}
}