1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:52:55 +08:00

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

View File

@ -43,7 +43,7 @@ namespace osu.Game.Rulesets.Osu.UI
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;