mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 02:37:25 +08:00
23 lines
711 B
C#
23 lines
711 B
C#
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
|
|
|
namespace osu.Game.Screens.Backgrounds
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
} |