CEngineSharp_Server.Utilities.Color.Color C# (CSharp) Method

Color() public method

Construct the color from another
public Color ( Color color ) : System.Runtime.InteropServices
color Color Color to copy
return System.Runtime.InteropServices
        public Color(Color color)
            : this(color.R, color.G, color.B, color.A)
        {
        }

Same methods

Color::Color ( byte red, byte green, byte blue ) : System.Runtime.InteropServices
Color::Color ( byte red, byte green, byte blue, byte alpha ) : System.Runtime.InteropServices