Forked Enjoy, mouse movement
[enjoyable.git] / JSActionButton.h
1 //
2 // JSActionButton.h
3 // Enjoy
4 //
5 // Created by Sam McCall on 5/05/09.
6 // Copyright 2009 University of Otago. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 @class JSAction;
11
12 @interface JSActionButton : JSAction {
13 int max;
14 BOOL active;
15 }
16
17 -(id)initWithIndex: (int)newIndex andName: (NSString*)newName;
18 @property(readwrite) int max;
19
20 @end