mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Move the inherited AllowTrackAdjustments
into OsuScreen
This commit is contained in:
@ -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; }
|
||||
|
||||
|
Reference in New Issue
Block a user