mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
GameMode -> Screen.
This commit is contained in:
18
osu.Game/Screens/Backgrounds/BackgroundScreenDefault.cs
Normal file
18
osu.Game/Screens/Backgrounds/BackgroundScreenDefault.cs
Normal file
@ -0,0 +1,18 @@
|
||||
// Copyright (c) 2007-2017 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.Backgrounds;
|
||||
|
||||
namespace osu.Game.Screens.Backgrounds
|
||||
{
|
||||
public class BackgroundScreenDefault : BackgroundScreen
|
||||
{
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(BaseGame game)
|
||||
{
|
||||
Add(new Background(@"Backgrounds/bg1"));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user