1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:42:55 +08:00

Mark IHasRecordingHandler.Recorder nullable

This commit is contained in:
Bartłomiej Dach 2023-06-26 18:52:05 +02:00
parent 44c08f3944
commit cc45ec4fff
No known key found for this signature in database

View File

@ -10,6 +10,6 @@ namespace osu.Game.Rulesets.UI
/// </summary>
public interface IHasRecordingHandler
{
public ReplayRecorder Recorder { set; }
public ReplayRecorder? Recorder { set; }
}
}