1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:47:24 +08:00
osu-lazer/osu.Game/Screens/Backgrounds/BackgroundScreenDefault.cs

17 lines
492 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
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-11-14 16:23:33 +08:00
namespace osu.Game.Screens.Backgrounds
{
2017-02-17 17:59:30 +08:00
public class BackgroundScreenDefault : BackgroundScreen
{
[BackgroundDependencyLoader]
private void load()
{
Add(new Background(@"Backgrounds/bg1"));
}
}
}