2018-01-05 11:21:19 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 04:59:30 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-29 11:13:58 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2017-02-17 09:59:30 +00:00
|
|
|
|
using osu.Framework.Screens;
|
2016-11-14 08:23:33 +00:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
|
|
|
|
using osu.Game.Screens.Play;
|
2016-10-05 11:03:52 +00:00
|
|
|
|
using OpenTK.Graphics;
|
2016-11-20 19:34:16 +00:00
|
|
|
|
using osu.Game.Screens.Select;
|
2017-07-14 16:18:12 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-09-29 11:13:58 +00:00
|
|
|
|
|
2016-11-14 08:23:33 +00:00
|
|
|
|
namespace osu.Game.Screens.Multiplayer
|
2016-09-29 11:13:58 +00:00
|
|
|
|
{
|
2017-11-21 02:49:42 +00:00
|
|
|
|
public class Match : ScreenWhiteBox
|
2016-09-29 11:13:58 +00:00
|
|
|
|
{
|
|
|
|
|
protected override IEnumerable<Type> PossibleChildren => new[] {
|
|
|
|
|
typeof(MatchSongSelect),
|
|
|
|
|
typeof(Player),
|
|
|
|
|
};
|
2016-10-05 11:03:52 +00:00
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override BackgroundScreen CreateBackground() => new BackgroundScreenCustom(@"Backgrounds/bg4");
|
2016-10-05 11:03:52 +00:00
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override void OnEntering(Screen last)
|
2016-10-05 11:03:52 +00:00
|
|
|
|
{
|
|
|
|
|
base.OnEntering(last);
|
2016-11-01 14:24:14 +00:00
|
|
|
|
|
2017-06-08 05:51:22 +00:00
|
|
|
|
Background.FadeColour(Color4.DarkGray, 500);
|
2016-10-05 11:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override bool OnExiting(Screen next)
|
2016-10-05 11:03:52 +00:00
|
|
|
|
{
|
2017-06-08 05:51:22 +00:00
|
|
|
|
Background.FadeColour(Color4.White, 500);
|
2016-10-07 09:58:20 +00:00
|
|
|
|
return base.OnExiting(next);
|
2016-10-05 11:03:52 +00:00
|
|
|
|
}
|
2016-09-29 11:13:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|