confused screaming
This commit is contained in:
18
RemoteFrameBuffer/Client/RemoteFrameBufferClientProtocol.cs
Normal file
18
RemoteFrameBuffer/Client/RemoteFrameBufferClientProtocol.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using RemoteFrameBuffer.Common;
|
||||
|
||||
namespace RemoteFrameBuffer.Client
|
||||
{
|
||||
public abstract class RemoteFrameBufferClientProtocol
|
||||
{
|
||||
protected readonly Stream vncStream;
|
||||
public abstract RfbProtoVersion Version { get; }
|
||||
|
||||
public RemoteFrameBufferClientProtocol(Stream s)
|
||||
{
|
||||
this.vncStream = s;
|
||||
}
|
||||
|
||||
public abstract void Handshake();
|
||||
public abstract void Initialization();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user