// 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.Rulesets.Edit.Checks.Components { public enum CheckScope { /// /// Run checks that apply to the current difficulty. /// Difficulty, /// /// Run checks that apply to the beatmapset as a whole. /// Beatmapset, } }