mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Add simplified implementation of an expandable slider
This commit is contained in:
16
osu.Game/Overlays/IExpandableControl.cs
Normal file
16
osu.Game/Overlays/IExpandableControl.cs
Normal file
@ -0,0 +1,16 @@
|
||||
// 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user