1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 00:17:19 +08:00
osu-lazer/osu.Game.Tournament/TournamentGame.cs

26 lines
673 B
C#
Raw Normal View History

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-11-07 01:20:32 +09:00
using osu.Framework.Graphics;
using osu.Game.Graphics.Cursor;
using osu.Game.Tournament.Screens;
namespace osu.Game.Tournament
{
2018-11-06 18:32:59 +09:00
public class TournamentGame : TournamentGameBase
{
protected override void LoadComplete()
{
base.LoadComplete();
2018-11-07 01:20:32 +09:00
Add(new OsuContextMenuContainer
{
RelativeSizeAxes = Axes.Both,
Child = new TournamentSceneManager()
});
MenuCursorContainer.Cursor.Alpha = 0;
}
}
}