2021-04-07 20:35:33 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-04-07 20:35:33 +08:00
|
|
|
using System.Collections.Generic;
|
2021-04-10 19:02:22 +08:00
|
|
|
using osu.Game.Rulesets.Edit.Checks.Components;
|
2021-04-07 20:35:33 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Edit
|
|
|
|
{
|
2021-04-13 22:30:20 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A class which can run against a beatmap and surface issues to the user which could go against known criteria or hinder gameplay.
|
|
|
|
/// </summary>
|
2021-04-13 16:40:56 +08:00
|
|
|
public interface IBeatmapVerifier
|
2021-04-07 20:35:33 +08:00
|
|
|
{
|
2021-05-13 17:24:22 +08:00
|
|
|
public IEnumerable<Issue> Run(BeatmapVerifierContext context);
|
2021-04-07 20:35:33 +08:00
|
|
|
}
|
|
|
|
}
|