Mosa.DeviceSystem.Color.Color C# (CSharp) Method

Color() public method

Initializes a new instance of the Color struct.
public Color ( byte red, byte green, byte blue )
red byte The red.
green byte The green.
blue byte The blue.
        public Color(byte red, byte green, byte blue)
        {
            Red = red;
            Green = green;
            Blue = blue;
            Alpha = 255;
        }

Same methods

Color::Color ( byte red, byte green, byte blue, byte alpha )