Files
PVabel2026/RemoteFrameBuffer/Common/RgbPixel.cs

10 lines
198 B
C#
Raw Normal View History

namespace RemoteFrameBuffer.Common
{
public struct RgbPixel
{
public Byte Red { get; set; }
public Byte Green { get; set; }
public Byte Blue { get; set; }
}
}