1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 14:42:56 +08:00

Separate combined fields

This commit is contained in:
Salman Ahmed 2022-07-27 10:13:40 +03:00
parent 0fe64d1e80
commit 89644a652e

View File

@ -58,7 +58,10 @@ namespace osu.Game.Rulesets.Osu.Mods
/// </summary>
private Box blackBoxLeft = null!, blackBoxRight = null!;
private Drawable panelLeft = null!, panelRight = null!, bgPanelLeft = null!, bgPanelRight = null!;
private Drawable panelLeft = null!;
private Drawable panelRight = null!;
private Drawable bgPanelLeft = null!;
private Drawable bgPanelRight = null!;
private readonly Beatmap<OsuHitObject> beatmap;