osu/osu.Game/Screens/Multiplayer/MatchCreate.cs

21 lines
524 B
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-09-29 11:13:58 +00:00
using System;
using System.Collections.Generic;
2016-11-14 08:23:33 +00:00
namespace osu.Game.Screens.Multiplayer
2016-09-29 11:13:58 +00:00
{
public class MatchCreate : ScreenWhiteBox
2016-09-29 11:13:58 +00:00
{
protected override IEnumerable<Type> PossibleChildren => new[] {
typeof(Match)
};
2017-05-08 11:55:04 +00:00
public MatchCreate()
{
ValidForResume = false;
}
2016-09-29 11:13:58 +00:00
}
}