axmol/templates/lua-template-runtime/frameworks/runtime-src/proj.ios_mac/ios/main.m

17 lines
335 B
Mathematica
Raw Normal View History

2014-03-11 16:52:06 +08:00
//
// main.m
// HelloLua
//
// 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;
}