Automatically trigger/untrigger targets based on setting the 'running' property;...
[enjoyable.git] / JSActionAnalog.h
1 //
2 // JSActionAnalog.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 JSActionAnalog : JSAction
14
15 @property (assign) float offset;
16 @property (assign) float scale;
17
18 - (id)initWithIndex:(int)newIndex offset:(float)offset scale:(float)scale;
19
20 @end