18 lines
355 B
Objective-C
18 lines
355 B
Objective-C
//
|
|
// main.m
|
|
// Box2D
|
|
//
|
|
// Created by Simon Oliver on 14/01/2009.
|
|
// Copyright HandCircus 2009. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
[pool release];
|
|
return retVal;
|
|
}
|