public
Fork of stephencelis/cocos2d-application
Description: An Xcode template for cocos2d-iphone, statically linked to $COCOS2D_SRC
Homepage: http://code.google.com/p/cocos2d-iphone
Clone URL: git://github.com/tjweir/cocos2d-application.git
tjweir (author)
Sun Jun 21 06:47:45 -0700 2009
commit  474efc1aab613febf7cee80f57aa4f728c236a40
tree    bd18a347af210e8094f3dcd9e5f5ac814315e525
parent  1c782d732f3b49c34c4da700b2beaaf0f25a631d
100755 17 lines (14 sloc) 0.404 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// 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___AppDelegate");
[pool release];
return retVal;
}