Mark the class as non-nullable.

Not the safe way but got no better idea.
This commit is contained in:
為什麼
2022-07-10 23:18:27 +08:00
committed by andy840119
parent 53e61c5041
commit 91bc7b9381
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ namespace osu.Game.Rulesets.Catch.Mods
{
public override string Description => @"Use the mouse to control the catcher.";
private DrawableRuleset<CatchHitObject> drawableRuleset;
private DrawableRuleset<CatchHitObject> drawableRuleset = null!;
public void ApplyToDrawableRuleset(DrawableRuleset<CatchHitObject> drawableRuleset)
{