Aura.Channel.World.Entities.Creatures.CreatureQuests.Get C# (CSharp) Method

Get() public method

Returns first quest that maches the predicate, or null if there were none.
public Get ( bool>.Func predicate ) : Aura.Channel.World.Quests.Quest
predicate bool>.Func
return Aura.Channel.World.Quests.Quest
		public Quest Get(Func<Quest, bool> predicate)
		{
			lock (_quests)
				return _quests.FirstOrDefault(predicate);
		}

Same methods

CreatureQuests::Get ( long uniqueId ) : Aura.Channel.World.Quests.Quest