Clean up JoystickController. Modernize more Objective-C syntax. Remove direct public...
[enjoyable.git] / SubAction.h
1 //
2 // SubAction.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
11 #import "JSAction.h"
12
13 @interface SubAction : JSAction
14
15 - (id)initWithIndex:(int)newIndex name:(NSString *)newName base:(JSAction *)newBase;
16
17 @property (assign) BOOL active;
18
19 @end