mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 15:44:04 +09:00
Expose as IBindable<bool>
This commit is contained in:
@ -41,6 +41,9 @@ namespace osu.Game.Screens.Play
|
|||||||
/// Whether we are currently in the break time range.
|
/// Whether we are currently in the break time range.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly BindableBool IsBreakTime = new BindableBool();
|
public readonly BindableBool IsBreakTime = new BindableBool();
|
||||||
|
public IBindable<bool> IsBreakTime => isBreakTime;
|
||||||
|
|
||||||
|
private readonly BindableBool isBreakTime = new BindableBool();
|
||||||
|
|
||||||
private readonly Container remainingTimeAdjustmentBox;
|
private readonly Container remainingTimeAdjustmentBox;
|
||||||
private readonly Container remainingTimeBox;
|
private readonly Container remainingTimeBox;
|
||||||
|
Reference in New Issue
Block a user