Adding tvOS target

This commit is contained in:
Diego Waxemberg
2018-08-25 20:33:03 -07:00
parent 76ab786e94
commit b0b9a614f3
32 changed files with 1036 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
//
// main.m
// Moonlight TV
//
// Created by Diego Waxemberg on 8/25/18.
// Copyright © 2018 Moonlight Game Streaming Project. 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]));
}
}