mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-06 09:25:01 -05:00
19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
|
//
|
||
|
// main.m
|
||
|
// PirateMailViewer
|
||
|
//
|
||
|
// Created by Timothy Prepscius on 7/25/12.
|
||
|
// Copyright (c) 2012 __MyCompanyName__. 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]));
|
||
|
}
|
||
|
}
|