X-Git-Url: http://git.roojs.org/?p=app.GameProjectTest;a=blobdiff_plain;f=GameProjectTest%2FAppDelegate.swift;fp=GameProjectTest%2FAppDelegate.swift;h=64141242ec6d759ced9cdc0472843d07ddafdc53;hp=f17c82489fb1202269aa2e4fbde5f1a16118a35a;hb=19f2f521ac6ce552d10b01ecfff76b95efc42c49;hpb=9b792dab1b97ffff1a0ccf4d3fc40816b843a2aa diff --git a/GameProjectTest/AppDelegate.swift b/GameProjectTest/AppDelegate.swift index f17c824..6414124 100644 --- a/GameProjectTest/AppDelegate.swift +++ b/GameProjectTest/AppDelegate.swift @@ -1,13 +1,13 @@ // // AppDelegate.swift -// GameProjectTest +// GameProjectTwo // -// Created by Alan Knowles on 29/3/2022. +// Created by Alan Knowles on 30/3/2022. // import UIKit -@main +@UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? @@ -15,6 +15,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. + + window = UIWindow() + window?.makeKeyAndVisible() + window?.rootViewController = ContainerController() return true }