Aura.Channel.World.Quests.QuestPrerequisiteOr.Is C# (CSharp) Method

Is() public method

public Is ( Type type ) : bool
type Type
return bool
		public override bool Is(Type type)
		{
			return this.Prerequisites.Any(a => a.Is(type));
		}
	}