mirror of
https://github.com/wu736139669/OzgGameRPG.git
synced 2026-08-05 06:24:38 +00:00
13 lines
359 B
Objective-C
13 lines
359 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
// Under iOS and the Simulator, we can use an alternate Accelerometer interface
|
|
#import "AccelerometerSimulation.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
|
[pool release];
|
|
return retVal;
|
|
}
|