confused screaming

This commit is contained in:
2026-02-05 15:34:59 +01:00
parent a9536ac780
commit c4223d45e4
16 changed files with 323 additions and 237 deletions

View File

@@ -0,0 +1,22 @@
using RemoteFrameBuffer.Common;
namespace RemoteFrameBuffer.Client
{
public class RemoteFrameBufferClientProtocol_3_3 : RemoteFrameBufferClientProtocol
{
public override RfbProtoVersion Version => new(3, 3);
public RemoteFrameBufferClientProtocol_3_3(Stream s) : base(s)
{
}
public override void Handshake()
{
}
public override void Initialization()
{
}
}
}