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