Create wireframe for team editor

This commit is contained in:
Dean Herbert
2019-06-14 20:32:02 +09:00
parent c9bd62e815
commit e58d259498
3 changed files with 175 additions and 1 deletions

View File

@ -0,0 +1,15 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Tournament.Screens.Teams;
namespace osu.Game.Tournament.Tests
{
public class TestSceneTeamsEditorScreen : LadderTestScene
{
public TestSceneTeamsEditorScreen()
{
Add(new TeamsEditorScreen());
}
}
}