BoringHeroes.GameLogic.HeroRelated.Skill.Skill C# (CSharp) Метод

Skill() публичный Метод

public Skill ( string name, int cooldown, int range, int castTime, Keys key, bool shouldCastOnCreeps, List type, SkillAction action ) : System
name string
cooldown int
range int
castTime int
key Keys
shouldCastOnCreeps bool
type List
action SkillAction
Результат System
        public Skill(string name, int cooldown, int range, int castTime, Keys key, bool shouldCastOnCreeps,
            List<SkillProperty> type, SkillAction action)
        {
            Name = name;
            Cooldown = cooldown;
            Range = range;
            Properties = type;
            Key = key;
            ShouldCastOnCreeps = shouldCastOnCreeps;
            SkillCastTime = castTime;
            AfterSkillUseAction = action;
        }
Skill