Update in line with screen changes

This commit is contained in:
Dean Herbert
2019-02-17 18:20:03 +09:00
parent f0743ebecf
commit fcab21908b
3 changed files with 10 additions and 11 deletions

View File

@ -13,11 +13,9 @@ using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
using osu.Framework.Logging;
using osu.Framework.Platform;
using osu.Framework.Screens;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Screens;
using osu.Game.Tournament.Components;
using osu.Game.Tournament.Screens.Drawings.Components;
using osuTK;
@ -25,14 +23,10 @@ using osuTK.Graphics;
namespace osu.Game.Tournament.Screens.Drawings
{
public class DrawingsScreen : OsuScreen
public class DrawingsScreen : CompositeDrawable
{
private const string results_filename = "drawings_results.txt";
public override bool HideOverlaysOnEnter => true;
protected override BackgroundScreen CreateBackground() => null;
private ScrollingTeamContainer teamsContainer;
private GroupContainer groupsContainer;
private OsuSpriteText fullTeamNameText;
@ -59,7 +53,6 @@ namespace osu.Game.Tournament.Screens.Drawings
if (!TeamList.Teams.Any())
{
this.Exit();
return;
}