2014-08-30 22:46:31 -04:00

19 lines
348 B
Objective-C

//
// 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]));
}
}