2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-10-06 14:32:35 +00:00
|
|
|
|
|
2016-11-08 23:13:20 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-11-23 02:59:50 +00:00
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
2016-10-06 14:32:35 +00:00
|
|
|
|
|
2016-11-14 08:23:33 +00:00
|
|
|
|
namespace osu.Game.Screens.Backgrounds
|
2016-10-06 14:32:35 +00:00
|
|
|
|
{
|
2017-02-17 09:59:30 +00:00
|
|
|
|
public class BackgroundScreenDefault : BackgroundScreen
|
2016-10-06 14:32:35 +00:00
|
|
|
|
{
|
2016-11-12 10:44:16 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-02-27 14:32:32 +00:00
|
|
|
|
private void load()
|
2016-10-06 14:32:35 +00:00
|
|
|
|
{
|
2016-11-19 16:39:43 +00:00
|
|
|
|
Add(new Background(@"Backgrounds/bg1"));
|
2016-10-06 14:32:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|