VoiceMac/Classes/VoiceMob/main.m

18 lines
359 B
Objective-C

//
// main.m
// VoiceMob
//
// Created by Mr. Gecko on 9/24/10.
// Copyright Mr. Gecko's Media 2010. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}