1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 03:02:36 +08:00
Files
osu-lazer/osu.Game/Rulesets/Edit/IBeatmapVerifier.cs
T
Dean Herbert cb0592d711 Remove redundant public specfications in interfaces
Rider EAP being noisy about this now (smoogi will be happy :D).
2025-05-26 17:14:41 +09:00

17 lines
561 B
C#

// 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;
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
{
IEnumerable<Issue> Run(BeatmapVerifierContext context);
}
}