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
|
|
|
|
2017-11-16 19:35:57 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-11-16 19:35:57 +08:00
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// An interface for <see cref="Mod"/>s that can be applied to <see cref="HitObject"/>s.
|
|
|
|
/// </summary>
|
2018-04-19 21:04:12 +08:00
|
|
|
public interface IApplicableToHitObject : IApplicableMod
|
2017-11-16 19:35:57 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-04-25 16:36:17 +08:00
|
|
|
/// Applies this <see cref="IApplicableToHitObject"/> to a <see cref="HitObject"/>.
|
2017-11-16 19:35:57 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="hitObject">The <see cref="HitObject"/> to apply to.</param>
|
2018-04-19 21:04:12 +08:00
|
|
|
void ApplyToHitObject(HitObject hitObject);
|
2017-11-16 19:35:57 +08:00
|
|
|
}
|
|
|
|
}
|