mirror of
https://github.com/ppy/osu
synced 2024-12-12 18:07:52 +00:00
18 lines
502 B
C#
18 lines
502 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.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Game.Graphics.Background;
|
|
|
|
namespace osu.Game.Screens.Backgrounds
|
|
{
|
|
public class BackgroundModeDefault : BackgroundMode
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(BaseGame game)
|
|
{
|
|
Add(new Background());
|
|
}
|
|
}
|
|
} |