Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion XcodeTemplates/Imagine Engine/iOS Game.xctemplate/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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