summaryrefslogtreecommitdiff
path: root/Juick/Supporting Files/main.m
blob: 8e011065394767d9cf86d2cb20dd3a7a809b27f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
//  main.m
//  Juick
//
//  Created by Vitaly Takmazov on 26.10.13.
//  Copyright (c) 2013 com.juick. All rights reserved.
//

#import <UIKit/UIKit.h>

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