Add empty Match screen.

This commit is contained in:
DrabWeb
2018-05-28 21:01:56 -03:00
parent d090323c00
commit ab3ac49a2d
5 changed files with 43 additions and 58 deletions

View File

@ -0,0 +1,23 @@
// 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.Online.Multiplayer;
using osu.Game.Screens.Multi.Screens.Match;
namespace osu.Game.Tests.Visual
{
public class TestCaseMatch : OsuTestCase
{
public TestCaseMatch()
{
Room room = new Room
{
};
Match match = new Match(room);
AddStep(@"show", () => Add(match));
AddStep(@"exit", match.Exit);
}
}
}