1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 02:39:52 +08:00

Protect configuration bindables

This commit is contained in:
Dean Herbert
2019-10-08 12:08:47 +09:00
Unverified
parent b8b2ff2674
commit c280bee894
+2 -2
View File
@@ -37,9 +37,9 @@ namespace osu.Game.Screens.Menu
/// </summary>
protected abstract string BeatmapFile { get; }
protected Bindable<bool> MenuVoice;
protected IBindable<bool> MenuVoice { get; private set; }
protected Bindable<bool> MenuMusic;
protected IBindable<bool> MenuMusic { get; private set; }
protected WorkingBeatmap IntroBeatmap;