//

//  MRArkaView.h

//  SimpleArka

//

//  Created by Marco Rotatori on 12/02/10.

//  Copyright 2010 Marco Rotatori. All rights reserved.

//


#import <Cocoa/Cocoa.h>



@interface MRArkaView : NSView {

float velocity;

float xDirection;

float yDirection;

NSRect ballRect;

NSRect barRect;

BOOL barIsMoving;

NSMutableArray *bricks;

NSTimer *timer;

}

- (void)fillBricks;

- (void)update:(NSTimer*)theTimer;


@end