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

Is() public method

Returns true if the specified flags are set.
public Is ( CombatActionType flags ) : bool
flags CombatActionType
return bool
		public bool Is(CombatActionType flags)
		{
			return flags == this.Flags || (flags != CombatActionType.None && (this.Flags & flags) != 0);
		}
	}
CombatAction