Terraria.Lighting.ColorTriplet.ColorTriplet C# (CSharp) Method

ColorTriplet() public method

public ColorTriplet ( float averageColor ) : Microsoft.Xna.Framework
averageColor float
return Microsoft.Xna.Framework
            public ColorTriplet(float averageColor)
            {
                this.r = this.g = this.b = averageColor;
            }
        }

Same methods

Lighting.ColorTriplet::ColorTriplet ( float R, float G, float B ) : Microsoft.Xna.Framework
Lighting.ColorTriplet