Initial revision
[ITKit.git] / ITChasingArrowsView.h
1 //
2 //  ITChasingArrowsView.h
3 //  
4 //
5 //  Created by Doug Brown on Sat May 11 2002.
6 //  Copyright (c) 2002 iThink Software. All rights reserved.
7 //
8
9 #import <AppKit/AppKit.h>
10
11
12 @interface ITChasingArrowsView : NSView {
13     BOOL running, inForeground;
14     int curIndex;
15     NSTimer *timer;
16     NSArray *images;
17 }
18 - (IBAction)stop:(id)sender;
19 - (IBAction)start:(id)sender;
20 @end