axmol/template/xcode3/cocos2d-x_box2d_app/ios/main.m

17 lines
406 B
Mathematica
Raw Normal View History

2011-01-17 17:03:48 +08:00
//
// main.m
// ___PROJECTNAME___
//
// Created by ___FULLUSERNAME___ on ___DATE___.
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [NSAutoreleasePool new];
2011-03-10 11:59:17 +08:00
int retVal = UIApplicationMain(argc, argv, nil, @"___PROJECTNAMEASIDENTIFIER___AppController");
2011-01-17 17:03:48 +08:00
[pool release];
return retVal;
}