Initial Commit

This commit is contained in:
Abel Fokkinga
2012-08-27 20:39:49 +02:00
commit 70477d2c47
10 changed files with 496 additions and 0 deletions

18
Espagram/main.m Normal file
View File

@@ -0,0 +1,18 @@
//
// main.m
// Espagram
//
// Created by Abel Fokkinga on 8/27/12.
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "EspagramAppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([EspagramAppDelegate class]));
}
}