Aura.Channel.World.Dungeons.DungeonManager.Get C# (CSharp) 메소드

Get() 개인적인 메소드

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