using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.RemoteDesktop.Frames { /// /// Represents a pixel. /// public struct VectorFramePixel { /// /// Gets or sets the x position. /// public int X { get; set; } /// /// Gets or sets the y position. /// public int Y { get; set; } /// /// Gets or sets the index of the color. /// public int ColorIndex { get; set; } /// /// Gets or sets the pixel color (not for serialization!). /// public VectorFrameColor Color { get; set; } } }