Aura.Channel.World.Dungeons.DungeonManager.Get C# (CSharp) Method

Get() private method

Returns first dungeon that matches the predicate, or null.
private Get ( bool>.Func predicate ) : Dungeon
predicate bool>.Func
return Dungeon
		private Dungeon Get(Func<Dungeon, bool> predicate)
		{
			lock (_syncLock)
				return _dungeons.Values.FirstOrDefault(predicate);
		}