// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Game.Beatmaps; namespace osu.Game.Rulesets.Edit.Checks.Components { public abstract class BeatmapCheck : Check { /// /// Returns zero, one, or several issues detected by this /// check on the given beatmap. /// /// The beatmap to run the check on. /// public abstract override IEnumerable Run(IBeatmap beatmap); } }