D3Helper.A_Collection.SkillPower.SkillPower C# (CSharp) Method

SkillPower() public method

public SkillPower ( int powerSNO, string name, List runes, int resourceCost, bool isPrimaryResource, bool isCooldownSpell ) : System
powerSNO int
name string
runes List
resourceCost int
isPrimaryResource bool
isCooldownSpell bool
return System
        public SkillPower(int powerSNO, string name, List<Rune> runes, int resourceCost, bool isPrimaryResource, bool isCooldownSpell)
        {
            this.PowerSNO = powerSNO;
            this.Name = name;
            this.Runes = runes;
            this.ResourceCost = resourceCost;
            this.IsPrimaryResource = isPrimaryResource;
            this.IsCooldownSpell = isCooldownSpell;
        }
        
SkillPower