2022-01-21 22:41:33 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2022-01-21 22:41:33 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
2022-02-14 16:51:39 +08:00
|
|
|
namespace osu.Game.Graphics.Containers
|
2022-01-21 22:41:33 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// An interface for drawables with ability to expand/contract.
|
|
|
|
/// </summary>
|
|
|
|
public interface IExpandable : IDrawable
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Whether this drawable is in an expanded state.
|
|
|
|
/// </summary>
|
|
|
|
BindableBool Expanded { get; }
|
|
|
|
}
|
|
|
|
}
|