Files
2017-01-18 23:20:00 -05:00

17 lines
353 B
Objective-C

//
// main.m
// AVPlayerHTTPHeaders
//
// Created by Kevin Hunt on 2017-01-18.
// Copyright © 2017 Prophet Studios. 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]));
}
}