It can actually take screenshots of the VM

This commit is contained in:
2026-02-09 14:26:11 +01:00
parent c4223d45e4
commit 9a333bb1c8
7 changed files with 364 additions and 14 deletions

View File

@@ -0,0 +1,9 @@
namespace RemoteFrameBuffer.Common
{
public struct RgbPixel
{
public Byte Red { get; set; }
public Byte Green { get; set; }
public Byte Blue { get; set; }
}
}