osu/osu.Game/Rulesets/Edit/IBeatmapVerifier.cs

17 lines
565 B
C#
Raw Normal View History

2021-04-07 12:35:33 +00: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.
using System.Collections.Generic;
using osu.Game.Rulesets.Edit.Checks.Components;
2021-04-07 12:35:33 +00:00
namespace osu.Game.Rulesets.Edit
{
2021-04-13 14:30:20 +00: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 08:40:56 +00:00
public interface IBeatmapVerifier
2021-04-07 12:35:33 +00:00
{
2021-05-13 09:24:22 +00:00
public IEnumerable<Issue> Run(BeatmapVerifierContext context);
2021-04-07 12:35:33 +00:00
}
}