Forked Enjoy, mouse movement
[enjoyable.git] / Config.h
1 //
2 // Config.h
3 // Enjoy
4 //
5 // Created by Sam McCall on 4/05/09.
6 // Copyright 2009 University of Otago. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 @class Target;
11
12 @interface Config : NSObject {
13 NSString *name;
14 BOOL protect;
15 NSMutableDictionary *entries;
16 }
17
18 @property(readwrite) BOOL protect;
19 @property(readwrite, copy) NSString* name;
20 @property(readonly) NSMutableDictionary* entries;
21
22 -(void) setTarget:(Target*)target forAction:(id)jsa;
23 -(Target*) getTargetForAction: (id) jsa;
24
25 @end