2018-11-06 13:49:09 +08:00
|
|
|
// 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 00:20:32 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics.Cursor;
|
2018-11-06 13:49:09 +08:00
|
|
|
using osu.Game.Tournament.Screens;
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament
|
|
|
|
{
|
2018-11-06 17:32:59 +08:00
|
|
|
public class TournamentGame : TournamentGameBase
|
2018-11-06 13:49:09 +08:00
|
|
|
{
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2018-11-07 00:20:32 +08:00
|
|
|
|
|
|
|
Add(new OsuContextMenuContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Child = new TournamentSceneManager()
|
|
|
|
});
|
2018-11-06 14:08:14 +08:00
|
|
|
|
|
|
|
MenuCursorContainer.Cursor.Alpha = 0;
|
2018-11-06 13:49:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|