1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 21:17:18 +08:00

20 lines
563 B
C#
Raw Normal View History

2023-06-23 01:37:25 +09:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2022-01-21 17:41:33 +03:00
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osu.Framework.Graphics;
2022-02-14 17:51:39 +09:00
namespace osu.Game.Graphics.Containers
2022-01-21 17:41:33 +03: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; }
}
}