1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00
osu-lazer/osu.Game/Rulesets/Edit/IBeatmapVerifier.cs

17 lines
565 B
C#
Raw Normal View History

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.
using System.Collections.Generic;
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
}
}