// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics; namespace osu.Game.Screens.SelectV2 { /// /// An interface to be attached to any s which are used for display inside a . /// public interface ICarouselPanel { /// /// The Y position which should be used for displaying this item within the carousel. This is managed by and should not be set manually. /// double DrawYPosition { get; set; } /// /// The carousel item this drawable is representing. This is managed by and should not be set manually. /// CarouselItem? Item { get; set; } } }