1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:07:25 +08:00

Expose as IBindable<bool>

This commit is contained in:
iiSaLMaN 2019-07-25 11:26:38 +03:00
parent 7b82d184bd
commit 0ea0a10ca4

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;