main.m 345 Bytes
//
//  main.m
//  TestAppExample
//
//  Created by Dexter Weiss on 10/10/13.
//  Copyright (c) 2013 Emmoco. All rights reserved.
//

#import <UIKit/UIKit.h>

#import "BTAppDelegate.h"

int main(int argc, char * argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([BTAppDelegate class]));
    }
}