1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 13:10:12 +08:00
Files
osu-lazer/osu.Game.Rulesets.Osu/Edit/OsuBeatmapVerifier.cs
T
2025-05-25 14:19:23 +02:00

37 lines
1.1 KiB
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 System.Linq;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Edit.Checks;
using osu.Game.Rulesets.Edit.Checks.Components;
using osu.Game.Rulesets.Osu.Edit.Checks;
namespace osu.Game.Rulesets.Osu.Edit
{
public class OsuBeatmapVerifier : IBeatmapVerifier
{
private readonly List<ICheck> checks = new List<ICheck>
{
// Compose
new CheckOffscreenObjects(),
new CheckTooShortSpinners(),
new CheckConcurrentObjects(),
// Spread
new CheckTimeDistanceEquality(),
new CheckLowDiffOverlaps(),
new CheckTooShortSliders(),
// Settings
new CheckOsuAbnormalDifficultySettings(),
};
public IEnumerable<Issue> Run(BeatmapVerifierContext context)
{
return checks.SelectMany(check => check.Run(context));
}
}
}