1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

workingbeatmap can not be null in BeatmapBackgroundSprite.cs

This commit is contained in:
Miterosan 2017-11-07 23:14:22 +01:00
parent d7dee57886
commit bc94179032

View File

@ -1,6 +1,7 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Framework.Allocation;
using osu.Framework.Graphics.Sprites;
@ -12,6 +13,9 @@ namespace osu.Game.Beatmaps.Drawables
public BeatmapBackgroundSprite(WorkingBeatmap working)
{
if (working == null)
throw new ArgumentNullException(nameof(working));
this.working = working;
}