Tier.Tier C# (CSharp) Method

Tier() public method

public Tier ( string tier, string name, string instructions, double multiplier, int startValue, int endValue, double securePercent, int requiredPoints ) : System.Collections
tier string
name string
instructions string
multiplier double
startValue int
endValue int
securePercent double
requiredPoints int
return System.Collections
    public Tier(string tier, string name, string instructions, double multiplier, int startValue, int endValue, double securePercent, int requiredPoints)
    {
        this.tier = tier;
        this.name = name;
        this.instructions = instructions;
        this.multiplier = multiplier;
        this.startValue = startValue;
        this.endValue = endValue;
        this.securePercent = securePercent;
        this.requiredPoints = requiredPoints;
    }