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-10-10 16:17:26 +08:00
|
|
|
|
using osu.Framework;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
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 BackgroundModeDefault : BackgroundMode
|
|
|
|
|
{
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(BaseGame game)
|
2016-10-06 22:32:35 +08:00
|
|
|
|
{
|
2016-11-20 00:39:43 +08:00
|
|
|
|
Add(new Background(@"Backgrounds/bg1"));
|
2016-10-06 22:32:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|