Forked Enjoy, mouse movement
[enjoyable.git] / Target.h
1 //
2 // Target.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 @interface Target : NSObject {
12 BOOL running;
13 int inputValue;
14 }
15
16 @property(readwrite) BOOL running;
17 @property(readwrite) int inputValue;
18 -(void) trigger;
19 -(void) untrigger;
20 -(NSString*) stringify;
21 +(Target*) unstringify: (NSString*) str withConfigList: (NSArray*) configs;
22
23 @end