1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 18:07:36 +08:00
osu-lazer/osu.Game/Rulesets/Edit/Checks/Components/ICheck.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.0 KiB
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.
2022-06-17 15:37:17 +08:00
#nullable disable
2021-04-07 20:35:33 +08:00
using System.Collections.Generic;
namespace osu.Game.Rulesets.Edit.Checks.Components
2021-04-07 20:35:33 +08:00
{
2021-04-13 22:30:20 +08:00
/// <summary>
/// A specific check that can be run on a beatmap to verify or find issues.
/// </summary>
public interface ICheck
2021-04-07 20:35:33 +08:00
{
/// <summary>
2021-04-12 14:27:12 +08:00
/// The metadata for this check.
2021-04-07 20:35:33 +08:00
/// </summary>
public CheckMetadata Metadata { get; }
2021-04-07 20:35:33 +08:00
/// <summary>
2021-04-12 14:27:12 +08:00
/// All possible templates for issues that this check may return.
2021-04-07 20:35:33 +08:00
/// </summary>
public IEnumerable<IssueTemplate> PossibleTemplates { get; }
2021-04-07 20:35:33 +08:00
/// <summary>
2021-04-12 14:27:12 +08:00
/// Runs this check and returns any issues detected for the provided beatmap.
/// </summary>
/// <param name="context">The beatmap verifier context associated with the beatmap.</param>
2021-05-13 17:24:22 +08:00
public IEnumerable<Issue> Run(BeatmapVerifierContext context);
2021-04-07 20:35:33 +08:00
}
}