Remove unused field.
[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 @class Target;
10 @class JSAction;
11
12 @interface Config : NSObject
13
14 @property (nonatomic, copy) NSString *name;
15 @property (nonatomic, readonly) NSMutableDictionary *entries;
16
17 - (id)initWithName:(NSString *)name;
18 - (Target *)objectForKeyedSubscript:(JSAction *)action;
19 - (void)setObject:(Target *)target forKeyedSubscript:(JSAction *)action;
20 - (NSDictionary *)serialize;
21
22 @end