diff --git a/XcodeTemplates/Imagine Engine/iOS Game.xctemplate/AppDelegate.swift b/XcodeTemplates/Imagine Engine/iOS Game.xctemplate/AppDelegate.swift index 6cfd6f1..45a20f6 100644 --- a/XcodeTemplates/Imagine Engine/iOS Game.xctemplate/AppDelegate.swift +++ b/XcodeTemplates/Imagine Engine/iOS Game.xctemplate/AppDelegate.swift @@ -4,7 +4,7 @@ import ImagineEngine @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { let scene = ___PACKAGENAME___Scene(size: UIScreen.main.bounds.size) let window = GameWindow(scene: scene) diff --git a/XcodeTemplates/Imagine Engine/iOS Game.xctemplate/Podfile b/XcodeTemplates/Imagine Engine/iOS Game.xctemplate/Podfile index 4fb3c9a..4e7d083 100644 --- a/XcodeTemplates/Imagine Engine/iOS Game.xctemplate/Podfile +++ b/XcodeTemplates/Imagine Engine/iOS Game.xctemplate/Podfile @@ -2,5 +2,5 @@ platform :ios, '9.0' target '___PACKAGENAME___' do use_frameworks! - pod 'ImagineEngine' + pod 'ImagineEngine', git: "https://github.com/JohnSundell/ImagineEngine.git" end