Skill.SetBaseValues C# (CSharp) Méthode

SetBaseValues() public méthode

public SetBaseValues ( float coolDown, int price, int manaCost, string skillName, SkillLevel skillLevel, string discription = null ) : void
coolDown float
price int
manaCost int
skillName string
skillLevel SkillLevel
discription string
Résultat void
    public void SetBaseValues(float coolDown, int price, int manaCost, string skillName, SkillLevel skillLevel, string discription = null)
    {
        this.coolDown = coolDown;
        this.price = price;
        this.manaCost = manaCost;
        this.skillName = skillName;
        this.skillLevel = skillLevel;
        this.skillDiscription = discription;
    }