// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Game.Beatmaps; namespace osu.Game.Rulesets.Edit { /// /// Represents the context provided by the beatmap verifier to the checks it runs. /// Contains information about what is being checked and how it should be checked. /// public class BeatmapVerifierContext { /// /// The working beatmap instance of the current beatmap. /// public readonly IWorkingBeatmap WorkingBeatmap; public BeatmapVerifierContext(IWorkingBeatmap workingBeatmap) { WorkingBeatmap = workingBeatmap; } } }