Public before private

This commit is contained in:
Dean Herbert 2019-07-22 22:14:09 +09:00
parent 075ca3d8ea
commit cdf75b4098
1 changed files with 2 additions and 1 deletions

View File

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