2016-10-06 14:32:35 +00: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-10-10 08:17:26 +00:00
|
|
|
|
using osu.Framework;
|
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
|
|
|
|
{
|
|
|
|
|
public class BackgroundModeDefault : BackgroundMode
|
|
|
|
|
{
|
2016-11-12 10:44:16 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(BaseGame game)
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|