mirror of https://github.com/axmolengine/axmol.git
17 lines
406 B
Objective-C
Executable File
17 lines
406 B
Objective-C
Executable File
//
|
|
// 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];
|
|
int retVal = UIApplicationMain(argc, argv, nil, @"___PROJECTNAMEASIDENTIFIER___AppController");
|
|
[pool release];
|
|
return retVal;
|
|
}
|