2021-06-19 17:06:28 +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.
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-06-21 04:35:07 +00:00
|
|
|
/// A common interface between implementations which provide an approach circle.
|
2021-06-19 17:06:28 +00:00
|
|
|
/// </summary>
|
2021-06-21 00:43:11 +00:00
|
|
|
public interface IHasApproachCircle
|
2021-06-19 17:06:28 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2021-06-21 00:43:11 +00:00
|
|
|
/// The approach circle drawable.
|
2021-06-19 17:06:28 +00:00
|
|
|
/// </summary>
|
2022-11-09 04:36:52 +00:00
|
|
|
Drawable? ApproachCircle { get; }
|
2021-06-19 17:06:28 +00:00
|
|
|
}
|
|
|
|
}
|