2021-06-18 11:54:40 +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.
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-06-29 16:37:03 +08:00
|
|
|
/// Marker interface for any mod which requires the approach circles to be visible.
|
|
|
|
/// Used for incompatibility with <see cref="IHidesApproachCircles"/>.
|
2021-06-18 11:54:40 +08:00
|
|
|
/// </summary>
|
2021-06-29 16:37:03 +08:00
|
|
|
/// <remarks>
|
|
|
|
/// Note that this is only a marker interface for incompatibility purposes, it does not change any gameplay behaviour.
|
|
|
|
/// </remarks>
|
2021-06-28 23:51:43 +08:00
|
|
|
public interface IRequiresApproachCircles
|
2021-06-18 11:54:40 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|