// 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.Bindables; using osu.Framework.Graphics; namespace osu.Game.Graphics.Containers { /// /// An interface for drawables with ability to expand/contract. /// public interface IExpandable : IDrawable { /// /// Whether this drawable is in an expanded state. /// BindableBool Expanded { get; } } }