Add DualRoleKeystrokeAction.

This commit is contained in:
László Monda
2016-03-30 01:48:08 +02:00
parent 7660bdb729
commit 94e5d55d8f
4 changed files with 64 additions and 49 deletions

View File

@@ -4,9 +4,10 @@ class KeystrokeAction extends KeyAction implements Serializable<KeystrokeAction>
static firstValidScancode = 1;
static lastValidScancode = 231;
private _scancode: number;
modifierMask: number;
private _scancode: number;
get scancode(): number {
return this._scancode;
}