Palettizer2/src/Color.cs

16 lines
259 B
C#

namespace Palettizer2
{
public struct Color
{
public byte R;
public byte G;
public byte B;
public byte A;
public override string ToString()
{
return $"{{R: {R.ToString()}, G: {G.ToString()}, B: {B.ToString()}, A: {A.ToString()}}}";
}
}
}