// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Database; namespace osu.Game.Beatmaps { public interface IBeatmapModelManager : IModelManager { /// /// Provide an online lookup queue component to handle populating online beatmap metadata. /// BeatmapOnlineLookupQueue OnlineLookupQueue { set; } /// /// Provide a working beatmap cache, used to invalidate entries on changes. /// IWorkingBeatmapCache WorkingBeatmapCache { set; } } }