Rename 'stringify' to 'uid' where it pertains to unique action IDs.
[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 <Foundation/Foundation.h>
10
11 @class Target;
12 @class JSAction;
13
14 @interface Config : NSObject
15
16 @property (assign) BOOL protect;
17 @property (copy) NSString *name;
18 @property (readonly) NSMutableDictionary *entries;
19
20 - (Target *)objectForKeyedSubscript:(JSAction *)action;
21 - (void)setObject:(Target *)target forKeyedSubscript:(JSAction *)action;
22
23 @end