1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:03:11 +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> /// </summary>
public interface IHasRecordingHandler public interface IHasRecordingHandler
{ {
public ReplayRecorder Recorder { set; } public ReplayRecorder? Recorder { set; }
} }
} }