8 lines
192 B
C#
8 lines
192 B
C#
namespace RemoteFrameBuffer.Client
|
|
{
|
|
public interface IRemoteFramebufferClientProtocolFactory
|
|
{
|
|
public abstract RemoteFrameBufferClientProtocol Construct(Stream s);
|
|
}
|
|
}
|