make PreviewPlaying readonly instead of abstract

This commit is contained in:
Jorolf
2017-09-26 12:21:00 +02:00
parent ce4a44000f
commit 1f2a82b7ab
3 changed files with 1 additions and 3 deletions

View File

@ -39,7 +39,7 @@ namespace osu.Game.Overlays.Direct
private BeatmapManager beatmaps;
private NotificationOverlay notifications;
public abstract Bindable<bool> PreviewPlaying { get; }
public readonly Bindable<bool> PreviewPlaying = new Bindable<bool>();
protected abstract PlayButton PlayButton { get; }
protected override Container<Drawable> Content => content;