1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 10:23:03 +08:00

Add new checks to verifier

This commit is contained in:
Naxess 2021-06-21 15:30:45 +02:00
parent fcb918d0e1
commit 2f3f4f3e4b

View File

@ -13,7 +13,12 @@ namespace osu.Game.Rulesets.Osu.Edit
{ {
private readonly List<ICheck> checks = new List<ICheck> private readonly List<ICheck> checks = new List<ICheck>
{ {
new CheckOffscreenObjects() // Compose
new CheckOffscreenObjects(),
// Spread
new CheckTimeDistanceEquality(),
new CheckLowDiffOverlaps()
}; };
public IEnumerable<Issue> Run(BeatmapVerifierContext context) public IEnumerable<Issue> Run(BeatmapVerifierContext context)