OpenNos.GameObject.CharacterSkill.CanBeUsed C# (CSharp) Method

CanBeUsed() public method

public CanBeUsed ( ) : bool
return bool
        public bool CanBeUsed()
        {
            return Skill != null && (LastUse.AddMilliseconds((Skill.Cooldown) * 100) < DateTime.Now);
        }