6ff088b78412e28f2097069fe89b23622501a3fa
[enjoyable.git] / TargetKeyboard.h
1 //
2 // TargetKeyboard.h
3 // Enjoy
4 //
5 // Created by Sam McCall on 5/05/09.
6 // Copyright 2009 University of Otago. All rights reserved.
7 //
8
9 #import "Target.h"
10
11 @interface TargetKeyboard : Target {
12 CGKeyCode vk;
13 NSString* descr;
14 }
15
16 @property (readwrite) CGKeyCode vk;
17 @property (readwrite, copy) NSString* descr;
18
19 +(TargetKeyboard*) unstringifyImpl: (NSArray*) comps;
20
21 @end