2021-06-18 03:54:40 +00: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 08:25:35 +00:00
|
|
|
/// Marker interface for any mod which requires the approach circles to be visible. Used for incompatibility with <see cref="IHidesApproachCircles"/>.
|
2021-06-18 03:54:40 +00:00
|
|
|
/// </summary>
|
2021-06-28 15:51:43 +00:00
|
|
|
public interface IRequiresApproachCircles
|
2021-06-18 03:54:40 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|