2016-10-06 22:32:35 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
|
public class BackgroundModeCustom : BackgroundMode
|
|
|
|
|
{
|
|
|
|
|
private readonly string textureName;
|
|
|
|
|
|
|
|
|
|
public BackgroundModeCustom(string textureName)
|
|
|
|
|
{
|
|
|
|
|
this.textureName = textureName;
|
|
|
|
|
Add(new Background(textureName));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Equals(BackgroundMode other)
|
|
|
|
|
{
|
|
|
|
|
return base.Equals(other) && textureName == ((BackgroundModeCustom)other).textureName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|