// 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; using osu.Game.Rulesets.UI; namespace osu.Game.Rulesets.Mods { /// /// An interface for mods that are applied to a RulesetContainer. /// /// The type of HitObject the RulesetContainer contains. public interface IApplicableMod where TObject : HitObject { /// /// Applies the mod to a RulesetContainer. /// /// The RulesetContainer to apply the mod to. void ApplyToRulesetContainer(RulesetContainer rulesetContainer); } }