Initial Commit

This commit is contained in:
Diego Waxemberg
2014-08-30 22:46:31 -04:00
commit 457b6b13cc
14 changed files with 904 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
//
// main.m
// Limelight
//
// Created by Diego Waxemberg on 8/30/14.
// Copyright (c) 2014 Limelight Stream. 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]));
}
}