1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 04:02:59 +08:00

beatmap can not be null in BeatmapSetHeader.cs

This commit is contained in:
Miterosan 2017-11-07 23:15:02 +01:00
parent bc94179032
commit dc317139c9

View File

@ -36,6 +36,9 @@ namespace osu.Game.Beatmaps.Drawables
public BeatmapSetHeader(WorkingBeatmap beatmap)
{
if (beatmap == null)
throw new ArgumentNullException(nameof(beatmap));
this.beatmap = beatmap;
Children = new Drawable[]