mirror of https://github.com/axmolengine/axmol.git
17 lines
336 B
Objective-C
17 lines
336 B
Objective-C
//
|
|
// main.m
|
|
// simulator
|
|
//
|
|
// Copyright __MyCompanyName__ 2011. All rights reserved.
|
|
//
|
|
|
|
#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;
|
|
}
|