mirror of
https://github.com/ppy/osu.git
synced 2025-01-30 10:15:09 +08:00
15 lines
361 B
C#
15 lines
361 B
C#
|
using osu.Game.Screens.Backgrounds;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace osu.Game.Screens.Tournament
|
|||
|
{
|
|||
|
public class Tournament : OsuScreen
|
|||
|
{
|
|||
|
protected override BackgroundScreen CreateBackground() => new BackgroundScreenDefault();
|
|||
|
}
|
|||
|
}
|