mirror of https://github.com/axmolengine/axmol.git
16 lines
319 B
Mathematica
16 lines
319 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// TestLua
|
||
|
//
|
||
|
// Copyright __MyCompanyName__ 2011. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
NSAutoreleasePool *pool = [NSAutoreleasePool new];
|
||
|
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
||
|
[pool release];
|
||
|
return retVal;
|
||
|
}
|