Palettizer/src/Color.cs

11 lines
172 B
C#

namespace Palettizer
{
public struct Color
{
public byte R { get; set; }
public byte G { get; set; }
public byte B { get; set; }
public byte A { get; set; }
}
}