Post active mapping changes through notification center rather than to the applicatio...
[enjoyable.git] / Config.h
index 2572669..606529d 100644 (file)
--- a/Config.h
+++ b/Config.h
 
 @interface Config : NSObject
 
-@property (copy) NSString *name;
-@property (readonly) NSMutableDictionary *entries;
+@property (nonatomic, copy) NSString *name;
+@property (nonatomic, readonly) NSMutableDictionary *entries;
 
+- (id)initWithName:(NSString *)name;
 - (Target *)objectForKeyedSubscript:(JSAction *)action;
 - (void)setObject:(Target *)target forKeyedSubscript:(JSAction *)action;
+- (NSDictionary *)serialize;
 
 @end