Palettizer/src/Color.cs

11 lines
172 B
C#
Raw Normal View History

2021-11-30 02:04:25 +00:00
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; }
}
}