// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Modes.Objects; namespace osu.Game.Beatmaps { /// /// Processes a post-converted Beatmap. /// /// The type of HitObject contained in the Beatmap. public interface IBeatmapProcessor 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. void PostProcess(Beatmap beatmap); } }