Beispiel #1
0
 public RandColor(RandByte red, RandByte green, RandByte blue, RandByte alpha)
 {
     R = red;
     G = green;
     B = blue;
     A = alpha;
 }
Beispiel #2
0
 public RandColor(RandByte colorChannel, RandByte alpha = null) : this(colorChannel, colorChannel, colorChannel, alpha)
 {
 }