1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 02:57:18 +08:00

20 lines
592 B
C#
Raw Normal View History

2016-09-29 20:13:58 +09:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2016-10-05 20:03:52 +09:00
using osu.Framework.GameModes;
using osu.Game.GameModes.Backgrounds;
2016-10-05 20:03:52 +09:00
using OpenTK.Graphics;
2016-09-29 20:13:58 +09:00
namespace osu.Game.GameModes.Multiplayer
{
class MatchSongSelect : GameModeWhiteBox
{
2016-10-05 20:03:52 +09:00
protected override BackgroundMode CreateBackground() => new BackgroundModeCustom(@"Backgrounds/bg4");
2016-09-29 20:13:58 +09:00
}
}