Move the inherited AllowTrackAdjustments into OsuScreen

This commit is contained in:
AbstractQbit
2021-09-15 10:55:16 +03:00
parent bd18c581c1
commit b87af3dd68
3 changed files with 13 additions and 18 deletions

View File

@ -81,7 +81,13 @@ namespace osu.Game.Screens
public virtual float BackgroundParallaxAmount => 1;
public virtual bool? AllowTrackAdjustments => null;
private bool? allowTrackAdjustments = null;
public virtual bool? AllowTrackAdjustments
{
set => allowTrackAdjustments = value;
get => allowTrackAdjustments;
}
public Bindable<WorkingBeatmap> Beatmap { get; private set; }