ish/app/main.m
2017-10-18 09:51:33 -07:00

16 lines
280 B
Objective-C

//
// main.m
// iSH
//
// Created by Theodore Dubois on 10/17/17.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}