// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Rulesets.Objects; namespace osu.Game.Beatmaps { /// /// Processes a post-converted Beatmap. /// /// The type of HitObject contained in the Beatmap. public class BeatmapProcessor where TObject : HitObject { /// /// Post-processes a Beatmap to add mode-specific components that aren't added during conversion. /// /// An example of such a usage is for combo colours. /// /// /// The Beatmap to process. public virtual void PostProcess(Beatmap beatmap) { } } }