Add xmldoc to interfaces

This commit is contained in:
Dean Herbert 2021-04-13 23:30:20 +09:00
parent 21e8e5fbca
commit cb4f64133e
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,9 @@
namespace osu.Game.Rulesets.Edit.Checks.Components namespace osu.Game.Rulesets.Edit.Checks.Components
{ {
/// <summary>
/// A specific check that can be run on a beatmap to verify or find issues.
/// </summary>
public interface ICheck public interface ICheck
{ {
/// <summary> /// <summary>

View File

@ -7,6 +7,9 @@
namespace osu.Game.Rulesets.Edit namespace osu.Game.Rulesets.Edit
{ {
/// <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>
public interface IBeatmapVerifier public interface IBeatmapVerifier
{ {
public IEnumerable<Issue> Run(IBeatmap beatmap); public IEnumerable<Issue> Run(IBeatmap beatmap);