mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-21 03:52:48 +00:00
8 lines
178 B
Java
8 lines
178 B
Java
package com.limelight.nvstream.control;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface InputPacketSender {
|
|
void sendInputPacket(byte[] data, short length) throws IOException;
|
|
}
|