apple2ix/Apple2Mac/Apple2etvOS/main.m
2016-01-04 21:25:27 -08:00

17 lines
345 B
Objective-C

//
// main.m
// Apple2etvOS
//
// Created by Jerome Vernet on 01/01/2016.
// Copyright © 2016 deadc0de.org. 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]));
}
}