osu/osu.Game/Screens/Backgrounds/BackgroundScreenCustom.cs

27 lines
856 B
C#
Raw Normal View History

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