X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=Config.h;fp=Config.h;h=1120edea47f1e78d2fe462a729c94c868b575472;hp=0000000000000000000000000000000000000000;hb=530009447c5bbd360ac5023979cffc6d32a28df3;hpb=5f07baa8cb03a2f6aa06338bfeb31dad3c3ca29f diff --git a/Config.h b/Config.h new file mode 100644 index 0000000..1120ede --- /dev/null +++ b/Config.h @@ -0,0 +1,25 @@ +// +// Config.h +// Enjoy +// +// Created by Sam McCall on 4/05/09. +// Copyright 2009 University of Otago. All rights reserved. +// + +#import +@class Target; + +@interface Config : NSObject { + NSString *name; + BOOL protect; + NSMutableDictionary *entries; +} + +@property(readwrite) BOOL protect; +@property(readwrite, copy) NSString* name; +@property(readonly) NSMutableDictionary* entries; + +-(void) setTarget:(Target*)target forAction:(id)jsa; +-(Target*) getTargetForAction: (id) jsa; + +@end