blob: 80c5a446b590bfec8ffc404d67d4ba6009959550 [file] [log] [blame]
#import "AppDelegate_iPhone.h"
@implementation AppDelegate_iPhone
@synthesize window, fRoot;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[window addSubview:fRoot.view];
[window makeKeyAndVisible];
return YES;
}
- (void)dealloc {
[window release];
[fRoot release];
[super dealloc];
}
@end