Forked Enjoy, mouse movement
[enjoyable.git] / TargetKeyboard.h
diff --git a/TargetKeyboard.h b/TargetKeyboard.h
new file mode 100644 (file)
index 0000000..a968a9a
--- /dev/null
@@ -0,0 +1,22 @@
+//
+//  TargetKeyboard.h
+//  Enjoy
+//
+//  Created by Sam McCall on 5/05/09.
+//  Copyright 2009 University of Otago. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+@class Target;
+
+@interface TargetKeyboard : Target {
+       CGKeyCode vk;
+       NSString* descr;
+}
+
+@property (readwrite) CGKeyCode vk;
+@property (readwrite, copy) NSString* descr;
+
++(TargetKeyboard*) unstringifyImpl: (NSArray*) comps;
+
+@end