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:
parent
bc94179032
commit
dc317139c9
@ -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[]
|
||||
|
Loading…
Reference in New Issue
Block a user