// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Localisation; using osu.Game.Localisation; namespace osu.Game.Rulesets.Edit.Checks.Components { public enum CheckScope { /// /// Run checks that apply to the current difficulty. /// [LocalisableDescription(typeof(EditorStrings), nameof(EditorStrings.CheckCurrentDifficulty))] Difficulty, /// /// Run checks that apply to the beatmap set as a whole. /// [LocalisableDescription(typeof(EditorStrings), nameof(EditorStrings.CheckEntireBeatmapSet))] BeatmapSet, } }