mirror of https://github.com/ppy/osu
Remove `DrawingsScreen` world map completely
This commit is contained in:
parent
22a51fdc50
commit
00c7101f54
|
@ -12,8 +12,6 @@
|
|||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Shapes;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
using osu.Framework.Logging;
|
||||
using osu.Framework.Platform;
|
||||
using osu.Game.Graphics;
|
||||
|
@ -26,7 +24,7 @@
|
|||
|
||||
namespace osu.Game.Tournament.Screens.Drawings
|
||||
{
|
||||
public class DrawingsScreen : TournamentScreen
|
||||
public class DrawingsScreen : TournamentScreen, IProvideVideo
|
||||
{
|
||||
private const string results_filename = "drawings_results.txt";
|
||||
|
||||
|
@ -45,7 +43,7 @@ public class DrawingsScreen : TournamentScreen
|
|||
public ITeamList TeamList;
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(TextureStore textures, Storage storage)
|
||||
private void load(Storage storage)
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
|
||||
|
@ -91,12 +89,6 @@ private void load(TextureStore textures, Storage storage)
|
|||
RelativeSizeAxes = Axes.Both,
|
||||
Children = new Drawable[]
|
||||
{
|
||||
new Sprite
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
FillMode = FillMode.Fill,
|
||||
Texture = textures.Get(@"Backgrounds/Drawings/background.png")
|
||||
},
|
||||
new TourneyVideo("drawings")
|
||||
{
|
||||
Loop = true,
|
||||
|
|
Loading…
Reference in New Issue