osu/osu.Game/Graphics/Containers/IExpandable.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
579 B
C#
Raw Normal View History

2022-01-21 14:41:33 +00: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 07:37:17 +00:00
#nullable disable
2022-01-21 14:41:33 +00:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
2022-02-14 08:51:39 +00:00
namespace osu.Game.Graphics.Containers
2022-01-21 14:41:33 +00: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; }
}
}