Remove moonlight-common subproject

This commit is contained in:
Cameron Gutman
2019-08-20 18:51:13 -07:00
parent 61f8fa7c5a
commit 235a0635be
164 changed files with 6 additions and 730 deletions
@@ -0,0 +1,10 @@
package com.limelight.nvstream.input;
public class KeyboardPacket {
public static final byte KEY_DOWN = 0x03;
public static final byte KEY_UP = 0x04;
public static final byte MODIFIER_SHIFT = 0x01;
public static final byte MODIFIER_CTRL = 0x02;
public static final byte MODIFIER_ALT = 0x04;
}