Fix nullability hint

This commit is contained in:
Dean Herbert 2024-03-11 14:43:54 +08:00
parent d12b11e234
commit 091425db30
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public partial class OsuPlayfield : Playfield
public static readonly Vector2 BASE_SIZE = new Vector2(512, 384);
protected override GameplayCursorContainer CreateCursor() => new OsuCursorContainer();
protected override GameplayCursorContainer? CreateCursor() => new OsuCursorContainer();
private readonly Container judgementAboveHitObjectLayer;