Aura.Channel.Skills.Skill.Has C# (CSharp) Method

Has() public method

Returns true if skill has the given flags.
public Has ( SkillFlags flags ) : bool
flags SkillFlags
return bool
		public bool Has(SkillFlags flags)
		{
			return ((this.Info.Flag & flags) != 0);
		}