2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-10-06 22:32:35 +08:00
|
|
|
|
|
2016-11-23 10:59:50 +08:00
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
2016-10-06 22:32:35 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
namespace osu.Game.Screens.Backgrounds
|
2016-10-06 22:32:35 +08:00
|
|
|
|
{
|
2017-02-17 17:59:30 +08:00
|
|
|
|
public class BackgroundScreenCustom : BackgroundScreen
|
2016-10-06 22:32:35 +08:00
|
|
|
|
{
|
|
|
|
|
private readonly string textureName;
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
public BackgroundScreenCustom(string textureName)
|
2016-10-06 22:32:35 +08:00
|
|
|
|
{
|
|
|
|
|
this.textureName = textureName;
|
|
|
|
|
Add(new Background(textureName));
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
public override bool Equals(BackgroundScreen other)
|
2016-10-06 22:32:35 +08:00
|
|
|
|
{
|
2017-03-07 12:30:36 +08:00
|
|
|
|
var backgroundScreenCustom = other as BackgroundScreenCustom;
|
2017-03-07 09:59:19 +08:00
|
|
|
|
if (backgroundScreenCustom == null) return false;
|
|
|
|
|
|
|
|
|
|
return base.Equals(other) && textureName == backgroundScreenCustom.textureName;
|
2016-10-06 22:32:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-05 19:21:19 +08:00
|
|
|
|
}
|