mirror of
https://github.com/ppy/osu
synced 2025-01-24 23:03:14 +00:00
17 lines
519 B
C#
17 lines
519 B
C#
// 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.
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
/// <summary>
|
|
/// An interface for UI controls with the ability to expand/contract.
|
|
/// </summary>
|
|
public interface IExpandableControl : IExpandable
|
|
{
|
|
/// <summary>
|
|
/// Returns whether the UI control is currently in a dragged state.
|
|
/// </summary>
|
|
bool IsControlDragged { get; }
|
|
}
|
|
}
|