Added MetaKey(WindowKey) Packet

Allows you to use Windows key combinations.

ex) Win+Tab , Win+D
This commit is contained in:
luten145
2022-11-13 12:53:25 +09:00
committed by Cameron Gutman
parent 56eddff8d6
commit 26bff28e4d
2 changed files with 9 additions and 1 deletions

View File

@@ -7,4 +7,5 @@ public class KeyboardPacket {
public static final byte MODIFIER_SHIFT = 0x01;
public static final byte MODIFIER_CTRL = 0x02;
public static final byte MODIFIER_ALT = 0x04;
}
public static final byte MODIFIER_META = 0x08;
}