Public before private

This commit is contained in:
Dean Herbert 2019-07-22 22:14:09 +09:00
parent 075ca3d8ea
commit cdf75b4098

View File

@ -16,9 +16,10 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
{ {
public class FavouriteButton : HeaderButton public class FavouriteButton : HeaderButton
{ {
private readonly Bindable<bool> favourited = new Bindable<bool>();
public readonly Bindable<BeatmapSetInfo> BeatmapSet = new Bindable<BeatmapSetInfo>(); public readonly Bindable<BeatmapSetInfo> BeatmapSet = new Bindable<BeatmapSetInfo>();
private readonly Bindable<bool> favourited = new Bindable<bool>();
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load() private void load()
{ {