Arkchar.Renderer.Color.Color C# (CSharp) Method

Color() public method

public Color ( float r, float g, float b, float a ) : System
r float
g float
b float
a float
return System
        public Color(float r, float g, float b, float a)
        {
            this.r = r;
            this.g = g;
            this.b = b;
            this.a = a;
        }
    }
Color