// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Beatmaps { /// /// Determines which sources (if any at all) should be queried in which order for a beatmap's metadata. /// public enum MetadataLookupScope { /// /// Do not attempt to look up the beatmap metadata either in the local cache or online. /// None, /// /// Try the local metadata cache first before querying online sources. /// LocalCacheFirst, /// /// Query online sources immediately. /// OnlineFirst } }