Expose as IBindable for added safety

This commit is contained in:
Dean Herbert
2021-01-11 01:47:04 +09:00
parent e4eb44df6e
commit bd37723788
3 changed files with 15 additions and 11 deletions

View File

@ -24,7 +24,8 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
private readonly PlayButton playButton;
private PreviewTrack preview => playButton.Preview;
public Bindable<bool> Playing => playButton.Playing;
public IBindable<bool> Playing => playButton.Playing;
public BeatmapSetInfo BeatmapSet
{