//
//  MovingLabelsAppDelegate.m
//  MovingLabels
//
//  Created by Lieven Dekeyser on 10/12/09.
//  Copyright Lieven Dekeyser 2009. All rights reserved.
//

#import "MovingLabelsAppDelegate.h"

#import "MovingLabelsView.h"

@implementation MovingLabelsAppDelegate

@synthesize window;


- (void)applicationDidFinishLaunching:(UIApplication *)application {    
    [window addSubview:[[[MovingLabelsView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 480.0f)] autorelease]];
	[window makeKeyAndVisible];
}


- (void)dealloc {
    [window release];
    [super dealloc];
}


@end
