Forked Enjoy, mouse movement
[enjoyable.git] / TargetConfig.h
diff --git a/TargetConfig.h b/TargetConfig.h
new file mode 100644 (file)
index 0000000..0f164b9
--- /dev/null
@@ -0,0 +1,20 @@
+//
+//  TargetConfig.h
+//  Enjoy
+//
+//  Created by Sam McCall on 6/05/09.
+//  Copyright 2009 University of Otago. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+@class Config;
+@class Target;
+
+@interface TargetConfig : Target {
+       Config *config;
+}
+
+@property(readwrite, retain) Config* config;
++(TargetConfig*) unstringifyImpl: (NSArray*) comps withConfigList: (NSArray*) configs;
+
+@end