iOS frontend and XCode project

This commit is contained in:
Xawotihs
2010-12-12 15:58:47 +00:00
parent 32d614e23b
commit 3cb652087d
15 changed files with 2970 additions and 0 deletions

9
JGE/src/iOS/main.m Executable file
View File

@@ -0,0 +1,9 @@
#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;
}