Add Multiplayer screen.

This commit is contained in:
DrabWeb
2018-05-15 21:14:10 -03:00
parent 1450bf64f5
commit 1a78ac3d10
3 changed files with 119 additions and 2 deletions

View File

@ -0,0 +1,17 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using NUnit.Framework;
using osu.Game.Screens.Multi;
namespace osu.Game.Tests.Visual
{
[TestFixture]
public class TestCaseMultiScreen : OsuTestCase
{
public TestCaseMultiScreen()
{
Child = new Multiplayer();
}
}
}