Newer
Older
Import / applications / HighwayDash / ports / Platform / iOS / main.m
@John Ryland John Ryland on 22 Dec 2020 341 bytes import NUC files
//
//  main.m
//  HighwayDash
//
//  Created by John Ryland on 8/02/2016.
//  Copyright © 2016 John Ryland. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "AppDelegate.h"

int main(int argc, char * argv[]) {
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
    }
}