mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2026-04-04 15:06:03 +00:00
added files from limelight from android
This commit is contained in:
23
limelight-pc/src/com/limelight/input/KeyboardHandler.java
Normal file
23
limelight-pc/src/com/limelight/input/KeyboardHandler.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package com.limelight.input;
|
||||
|
||||
import java.awt.event.KeyEvent;
|
||||
import java.awt.event.KeyListener;
|
||||
|
||||
public class KeyboardHandler implements KeyListener {
|
||||
|
||||
@Override
|
||||
public void keyPressed(KeyEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void keyReleased(KeyEvent event) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void keyTyped(KeyEvent event) {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user