diff -r 000000000000 -r efe5d4523a23 Source/main-iPhone.m --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Source/main-iPhone.m Thu Jul 31 13:23:44 2008 -0700 @@ -0,0 +1,17 @@ +// +// main.m +// GGB-iPhone +// +// Created by Jens Alfke on 3/7/08. +// Copyright __MyCompanyName__ 2008. All rights reserved. +// + +#import + +int main(int argc, char *argv[]) +{ + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + int retVal = UIApplicationMain(argc, argv, nil, @"GGB_iPhoneAppDelegate"); + [pool release]; + return retVal; +}