AssemblyCSharp.WeightedValue.WeightedValue C# (CSharp) Method

WeightedValue() public method

public WeightedValue ( string type, string name, float weight ) : System
type string
name string
weight float
return System
        public WeightedValue(string type, string name, float weight)
        {
            Type = type;
            Name = name;
            Weight = weight;
            IsAny = Name == "[any]";
        }