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

Is() public method

Returns true if the skill has one of the given ids.
public Is ( ) : bool
return bool
		public bool Is(params SkillId[] skillId)
		{
			return skillId.Contains(this.Info.Id);
		}