Add schedule screen

This commit is contained in:
Dean Herbert
2018-11-11 10:13:17 +09:00
parent 949cf98d1a
commit eabcef3e12
8 changed files with 221 additions and 17 deletions

View File

@ -19,6 +19,7 @@ using osu.Game.Online.API.Requests;
using osu.Game.Rulesets;
using osu.Game.Tournament.Components;
using osu.Game.Tournament.IPC;
using osu.Game.Tournament.Screens.Ladder.Components;
namespace osu.Game.Tournament
{
@ -34,6 +35,9 @@ namespace osu.Game.Tournament
[Cached]
private readonly Bindable<RulesetInfo> ruleset = new Bindable<RulesetInfo>();
[Cached]
private LadderEditorInfo editorInfo = new LadderEditorInfo();
private Bindable<Size> windowSize;
private FileBasedIPC ipc;