Add match screen header.

This commit is contained in:
DrabWeb
2018-05-28 22:11:01 -03:00
parent ab3ac49a2d
commit 98819880c4
3 changed files with 209 additions and 0 deletions

View File

@ -1,6 +1,7 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps;
using osu.Game.Online.Multiplayer;
using osu.Game.Screens.Multi.Screens.Match;
@ -12,6 +13,22 @@ namespace osu.Game.Tests.Visual
{
Room room = new Room
{
Beatmap =
{
Value = new BeatmapInfo
{
BeatmapSet = new BeatmapSetInfo
{
OnlineInfo = new BeatmapSetOnlineInfo
{
Covers = new BeatmapSetOnlineCovers
{
Cover = @"https://assets.ppy.sh/beatmaps/765055/covers/cover.jpg?1526955337",
},
},
},
},
},
};
Match match = new Match(room);