2019-01-24 16:43:03 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-03-19 22:44:15 +08:00
|
|
|
/// An interface for <see cref="Mod"/>s that can be applied to <see cref="DrawableRuleset"/>s.
|
2018-04-13 17:19:50 +08:00
|
|
|
/// </summary>
|
2019-03-19 22:44:15 +08:00
|
|
|
public interface IApplicableToDrawableRuleset<TObject> : IApplicableMod
|
2018-04-13 17:19:50 +08:00
|
|
|
where TObject : HitObject
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-03-19 22:44:15 +08:00
|
|
|
/// Applies this <see cref="IApplicableToDrawableRuleset{TObject}"/> to a <see cref="DrawableRuleset{TObject}"/>.
|
2018-04-13 17:19:50 +08:00
|
|
|
/// </summary>
|
2019-03-20 10:22:34 +08:00
|
|
|
/// <param name="drawableRuleset">The <see cref="DrawableRuleset{TObject}"/> to apply to.</param>
|
|
|
|
void ApplyToDrawableRuleset(DrawableRuleset<TObject> drawableRuleset);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|