osu/osu.Game/Rulesets/Mods/IApplicableMod.cs

23 lines
803 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-04-18 07:05:58 +00:00
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.UI;
2017-04-18 07:05:58 +00:00
namespace osu.Game.Rulesets.Mods
{
2017-03-12 13:38:50 +00:00
/// <summary>
/// An interface for mods that are applied to a HitRenderer.
/// </summary>
/// <typeparam name="TObject">The type of HitObject the HitRenderer contains.</typeparam>
2017-03-14 03:32:31 +00:00
public interface IApplicableMod<TObject>
2017-03-12 13:38:50 +00:00
where TObject : HitObject
{
2017-03-12 13:38:50 +00:00
/// <summary>
/// Applies the mod to a HitRenderer.
/// </summary>
/// <param name="hitRenderer">The HitRenderer to apply the mod to.</param>
void ApplyToHitRenderer(HitRenderer<TObject> hitRenderer);
}
}