NathanSweet 446327b1f8 Dropped support for cocos2d-x 3.0 and 3.1.
Will support only the latest 3.x.
2014-08-31 16:50:51 +02:00

10 lines
242 B
Objective-C

#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
[pool release];
return retVal;
}