mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 07:02:54 +08:00
19 lines
484 B
C#
19 lines
484 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Tournament.Screens;
|
|
|
|
namespace osu.Game.Tournament
|
|
{
|
|
public class TournamentGame : TournamentGameBase
|
|
{
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
Add(new TournamentSceneManager());
|
|
|
|
MenuCursorContainer.Cursor.Alpha = 0;
|
|
}
|
|
}
|
|
}
|