// // main.m // FreeFlight // // Created by Frédéric D'HAEYER on 16/10/09. // Copyright Parrot SA 2009. All rights reserved. // #import #import "AppDelegate.h" int main(int argc, char *argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; int retVal = UIApplicationMain(argc, argv, nil, nil); [pool release]; return retVal; }