diff --git a/osu.Game/Beatmaps/IWorkingBeatmap.cs b/osu.Game/Beatmaps/IWorkingBeatmap.cs
index 3bfbbad714..5a8ae45226 100644
--- a/osu.Game/Beatmaps/IWorkingBeatmap.cs
+++ b/osu.Game/Beatmaps/IWorkingBeatmap.cs
@@ -37,12 +37,12 @@ namespace osu.Game.Beatmaps
///
/// Retrieves the which this represents.
///
- IBeatmap Beatmap { get; }
+ IBeatmap? Beatmap { get; }
///
/// Retrieves the background for this .
///
- Texture Background { get; }
+ Texture? Background { get; }
///
/// Retrieves the for the of this .
@@ -57,12 +57,12 @@ namespace osu.Game.Beatmaps
///
/// Retrieves the which this provides.
///
- ISkin Skin { get; }
+ ISkin? Skin { get; }
///
/// Retrieves the which this has loaded.
///
- Track Track { get; }
+ Track? Track { get; }
///
/// Constructs a playable from using the applicable converters for a specific .
@@ -114,7 +114,7 @@ namespace osu.Game.Beatmaps
/// Returns the stream of the file from the given storage path.
///
/// The storage path to the file.
- Stream GetStream(string storagePath);
+ Stream? GetStream(string storagePath);
///
/// Beings loading the contents of this asynchronously.