1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 02:49:54 +08:00

Move variable above common bindables

This commit is contained in:
Dean Herbert
2019-12-13 20:06:12 +09:00
Unverified
parent 395b058ff8
commit 3dc2b59d2a
+2 -2
View File
@@ -87,12 +87,12 @@ namespace osu.Game.Screens
public virtual float BackgroundParallaxAmount => 1;
public virtual bool AllowRateAdjustments => true;
public Bindable<WorkingBeatmap> Beatmap { get; private set; }
public Bindable<RulesetInfo> Ruleset { get; private set; }
public virtual bool AllowRateAdjustments => true;
public Bindable<IReadOnlyList<Mod>> Mods { get; private set; }
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)