mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-11-03 12:07:02 +00:00
17 lines
345 B
Objective-C
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]));
|
|
}
|
|
}
|