public struct ColorType
{
public byte b;
public byte g;
public byte r;
public byte a;
public ColorType(byte r, byte g, byte b)
{
this.r = r;
this.g = g;
this.b = b;
this.a = 255;
}
public ColorType(Color c)
{
this.r = c.R;
this.g = c.G;
this.b = c.B;
this.a = c.A;
}
}