1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 23:01:03 +08:00

Expose as IBindable<bool>

This commit is contained in:
iiSaLMaN
2019-07-25 11:26:38 +03:00
Unverified
parent 7b82d184bd
commit 0ea0a10ca4
+3
View File
@@ -41,6 +41,9 @@ namespace osu.Game.Screens.Play
/// Whether we are currently in the break time range.
/// </summary>
public readonly BindableBool IsBreakTime = new BindableBool();
public IBindable<bool> IsBreakTime => isBreakTime;
private readonly BindableBool isBreakTime = new BindableBool();
private readonly Container remainingTimeAdjustmentBox;
private readonly Container remainingTimeBox;