Rename GameModes namespace to Screens.

This commit is contained in:
Dean Herbert
2016-11-14 17:23:33 +09:00
parent 1d51e6af2a
commit 0f4538f69f
72 changed files with 246 additions and 413 deletions

View File

@ -0,0 +1,15 @@
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
namespace osu.Game.Screens.Multiplayer
{
class MatchCreate : GameModeWhiteBox
{
protected override IEnumerable<Type> PossibleChildren => new[] {
typeof(Match)
};
}
}