Move showstoryboard into player

This commit is contained in:
David Zhao
2019-03-19 13:13:19 +09:00
parent 27a92e017c
commit df37973e84
2 changed files with 5 additions and 10 deletions

View File

@ -13,13 +13,5 @@ namespace osu.Game.Screens.Play
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap.Value);
protected new BackgroundScreenBeatmap Background => (BackgroundScreenBeatmap)base.Background;
protected Bindable<bool> ShowStoryboard;
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
ShowStoryboard = config.GetBindable<bool>(OsuSetting.ShowStoryboard);
}
}
}