2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
namespace osu.Game.Screens.Multiplayer
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2017-11-21 10:49:42 +08:00
|
|
|
|
public class Lobby : ScreenWhiteBox
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
|
|
|
|
protected override IEnumerable<Type> PossibleChildren => new[] {
|
|
|
|
|
typeof(MatchCreate),
|
|
|
|
|
typeof(Match)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|