OpenBve.World.ColorRGBA.ColorRGBA C# (CSharp) Méthode

ColorRGBA() private méthode

private ColorRGBA ( byte R, byte G, byte B, byte A ) : System
R byte
G byte
B byte
A byte
Résultat System
			internal ColorRGBA(byte R, byte G, byte B, byte A) {
				this.R = R;
				this.G = G;
				this.B = B;
				this.A = A;
			}
		}
World.ColorRGBA