19 lines
328 B
Objective-C
Executable File
19 lines
328 B
Objective-C
Executable File
//
|
|
// main.m
|
|
// BeerBox
|
|
//
|
|
// Created by Lukas on 24/07/14.
|
|
// Copyright (c) 2014 LBSFilm. 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]));
|
|
}
|
|
}
|