// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using osu.Framework.Graphics; namespace osu.Game.Rulesets.Osu.Skinning { /// /// A common interface between implementations which provide an approach circle. /// public interface IHasApproachCircle { /// /// The approach circle drawable. /// Drawable ApproachCircle { get; } } }