Mark the property as nullable or non-nullable.

This commit is contained in:
為什麼
2022-07-10 23:49:38 +08:00
committed by andy840119
parent e28584da89
commit deb39bd330
3 changed files with 4 additions and 4 deletions

View File

@ -53,9 +53,9 @@ namespace osu.Game.Rulesets.Osu.Mods
/// <summary>
/// Black background boxes behind blind panel textures.
/// </summary>
private Box blackBoxLeft, blackBoxRight;
private Box blackBoxLeft = null!, blackBoxRight = null!;
private Drawable panelLeft, panelRight, bgPanelLeft, bgPanelRight;
private Drawable panelLeft = null!, panelRight = null!, bgPanelLeft = null!, bgPanelRight = null!;
private readonly Beatmap<OsuHitObject> beatmap;