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